我无法在形状中为图像视图添加渐变到笔划。
我的形状:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#00ffffff" />
<padding
android:bottom="0dp" />
<corners android:radius="6dp"
android:bottomRightRadius="6dp" android:bottomLeftRadius="6dp"
android:topLeftRadius="6dp" android:topRightRadius="6dp"/>
<stroke android:width="5dp" android:color="#ffffff" />
</shape>
andorid:color=ffffff" />
如何更改为渐变。
我的布局代码
<ImageView
p1:id="@+id/imgArticle"
p1:layout_width="50dp"
p1:layout_height="50dp"
p1:layout_marginLeft="5dp"
p1:layout_marginTop="5dp"
p1:layout_marginBottom="5dp" />
<ImageView
p1:src="@drawable/radiusarticleimage"
p1:id="@+id/imgShape"
p1:background="@android:color/transparent"
p1:layout_width="55dp"
p1:layout_height="55dp"
p1:layout_marginLeft="2dp" />
这是我当前的结果
我想将图像周围的白色边框更改为渐变。