如何在android中的图像视图中应用图像渐变

时间:2015-01-30 23:25:18

标签: android

任何人都可以告诉你是否有可能在android中的图像视图中为图像提供渐变,如果有人可以告诉你怎么做

任何帮助将不胜感激

感谢

1 个答案:

答案 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>