任何人都可以告诉你是否有可能在android中的图像视图中为图像提供渐变,如果有人可以告诉你怎么做
任何帮助将不胜感激
感谢
答案 0 :(得分:1)
在你的布局中试试这个:
<ImageView
android:id="@+id/photo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/my_picture"
android:src="@drawable/gradient_shape" />
并将res/drawable/gradient_shape.xml
文件设为:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#00FFFFFF"
android:endColor="#FFFFFFFF"
android:type="linear" />
</shape>