标签:method link 属性 blend 配色 set 并集 tableview 设置
默认是这个方法
/** * 为图像设置着色选项. Assumes * {@link PorterDuff.Mode#SRC_ATOP} blending mode. * * @param color Color tint to apply. * @attr ref android.R.styleable#ImageView_tint */ @RemotableViewMethod public final void setColorFilter(int color) { setColorFilter(color, PorterDuff.Mode.SRC_ATOP); }
还可以使用输入交集/并集等等属性的方式改变图片配色
/** * Sets a tinting option for the image. * * @param color Color tint to apply. * @param mode How to apply the color. The standard mode is * {@link PorterDuff.Mode#SRC_ATOP} * * @attr ref android.R.styleable#ImageView_tint */ public final void setColorFilter(int color, PorterDuff.Mode mode) { setColorFilter(new PorterDuffColorFilter(color, mode)); }
标签:method link 属性 blend 配色 set 并集 tableview 设置
原文地址:https://www.cnblogs.com/guanxinjing/p/11558671.html