资源分类
代码获取资源
*******************************获取颜色
/* 有 @ColorInt 需要 getResources*/
titleBarLayout.setBackgroundColor(getResources().getColor(R.color.viewColorBg));
/*有 @ColorInt */
public void setBackgroundColor(@ColorInt int color) {
}
*******************************获取图片
/*直接赋值 不用getResources */
titleBarLayout.setRightIcon(R.drawable.mess_black);
public void setRightIcon(int resId) {
this.mRightIcon.setImageResource(resId);
}
网友评论