本文整理汇总了Java中com.odoo.widgets.slider.R类的典型用法代码示例。如果您正苦于以下问题:Java R类的具体用法?Java R怎么用?Java R使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
R类属于com.odoo.widgets.slider包,在下文中一共展示了R类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: focusOnPagerDot
import com.odoo.widgets.slider.R; //导入依赖的package包/类
@SuppressLint("NewApi")
public void focusOnPagerDot(int position) {
for (int i = 0; i < mParent.getChildCount(); i++) {
GradientDrawable shapeBg = (GradientDrawable) mContext
.getResources().getDrawable(R.drawable.intro_slider_dot_bg);
View child = mParent.getChildAt(i);
LinearLayout.LayoutParams params;
if (i == position) {
params = new LinearLayout.LayoutParams(getHeightWidth(true),
getHeightWidth(true));
shapeBg.setColor(mContext.getResources().getColor(
color.theme_primary));
} else {
params = new LinearLayout.LayoutParams(getHeightWidth(false),
getHeightWidth(false));
shapeBg.setColor(mContext.getResources().getColor(
color.theme_primary_trans));
}
params.setMargins(getLeftRightMargine(), getTopBottomMargine(),
getLeftRightMargine(), getTopBottomMargine());
child.setLayoutParams(params);
child.setBackground(shapeBg);
child.invalidate();
}
}
示例2: getHeightWidth
import com.odoo.widgets.slider.R; //导入依赖的package包/类
private int getHeightWidth(boolean focused) {
if (focused)
return (int) mContext.getResources().getDimension(
R.dimen.dot_focused_height_width);
else
return (int) mContext.getResources().getDimension(
R.dimen.dot_normal_height_width);
}
示例3: init
import com.odoo.widgets.slider.R; //导入依赖的package包/类
private void init(Context context) {
mContext = context;
setOrientation(LinearLayout.VERTICAL);
addView(LayoutInflater.from(mContext).inflate(
R.layout.slider_default_view, this, false));
}
示例4: setItems
import com.odoo.widgets.slider.R; //导入依赖的package包/类
public void setItems(FragmentManager fragmentManager, List<SliderItem> items) {
mSlider = (SliderHelper) findViewById(R.id.default_view_helper);
mSlider.init(fragmentManager, items);
mSlider.initNavigator((ViewGroup) findViewById(R.id.footer_dot));
}
示例5: getTopBottomMargine
import com.odoo.widgets.slider.R; //导入依赖的package包/类
private int getTopBottomMargine() {
return (int) mContext.getResources().getDimension(
R.dimen.dot_top_bottom_margine);
}
示例6: getLeftRightMargine
import com.odoo.widgets.slider.R; //导入依赖的package包/类
private int getLeftRightMargine() {
return (int) mContext.getResources().getDimension(
R.dimen.dot_left_right_margine);
}