使用形状

时间:2015-11-27 07:51:41

标签: android xml android-xml shape

我想用它的背景淡化我的图像。 使用此代码,我可以淡化图像的右侧如何淡化图像的顶部?

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#00FFFFFF"
        android:endColor="#FFFFFFFF"
        android:type="linear" />
</shape>

1 个答案:

答案 0 :(得分:1)

使用angle attr控制从上到下的形状方向。

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
    android:angle="90"
    android:startColor="#00FFFFFF"
    android:endColor="#FFFFFFFF"
    android:type="linear" />
</shape>