在Android阿尔法梯度(Alpha-gradient on Android)

2019-07-18 06:08发布

我需要在ImageView的边缘创建的α-梯度。 优选仅使用XML。

图像例如

Answer 1:

这里的解决方案

图像看起来像下面的图片

该代码

  • 准备形状绘制

RES /绘制/ 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>

定义布局:activity_main.xml中:

<ImageView
    android:id="@+id/photo"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/photo"
    android:src="@drawable/gradient_shape" />

这里绘制/照片是刚刚的JPEG文件夹可绘

编辑更多信息,请参阅本教程



Answer 2:

<?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>

完美transperancy。 请确保以下梯度的视图实际上是低于而不是仅仅触及梯度状观。

如果你有主RelativeLayout,ListView视图(背景:渐变)

确保梯度视图是在上面,ListView中的,而不是一个侧面。 如果您的梯度抛开这将是RelativeLayout的背景颜色,而不是由ListView控件透明。

我希望你明白我想说的。



文章来源: Alpha-gradient on Android