我需要在ImageView的边缘创建的α-梯度。 优选仅使用XML。
图像例如
我需要在ImageView的边缘创建的α-梯度。 优选仅使用XML。
图像例如
这里的解决方案
图像看起来像下面的图片
该代码 :
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文件夹可绘
编辑更多信息,请参阅本教程
<?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控件透明。
我希望你明白我想说的。