【发布时间】:2016-09-10 09:25:10
【问题描述】:
【问题讨论】:
-
可以分享原图吗?
标签: android imageview highlight
【问题讨论】:
标签: android imageview highlight
正确的解决方案如下:
greenCircle.getDrawable().setColorFilter(Color.parseColor("#70FFFF80"), PorterDuff.Mode.MULTIPLY );
【讨论】:
您可以设置foreground属性并根据您的要求设置alpha
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:foreground="#70FFFF80"
android:src="@drawable/your_image"/>
【讨论】: