我正在尝试使我的 imageview 具有径向渐变背景,该背景从纯白色变为外部的透明白色。这是我用作 ImageView 背景的 SHAPE 定义。问题是我的背景最终得到了一个纯白色圆圈,而不是我想要的半透明边缘:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#ffffff00"
android:endColor="#ffffffff"
android:centerX="50%"
android:centerY="50%"
android:gradientRadius="50%"
android:type="radial"/>
<corners
android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"/>