設定色彩
為影象設定著色顏色。預設情況下,色調將使用 SRC_ATOP
模式進行混合。
使用 XML 屬性設定色調:
android:tint="#009c38"
注意: 必須是 #rgb
,#argb
,#rrggbb
或 #aarrggbb
形式的顏色值。
以程式設計方式設定色調:
imgExample.setColorFilter(Color.argb(255, 0, 156, 38));
你可以清除這個濾色鏡:
imgExample.clearColorFilter();