我正在尝试绘制一个具有三个矩形形状的形状:
- 纯色
- 坡度
- 白线
我怎么做?
当我尝试这个时,它不起作用。布局具有父颜色。
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:height="60px"
>
<shape
android:shape="rectangle"
android:height="30px"
>
<solid
android:color="#ff297baf"
/>
</shape>
<shape
android:shape="rectangle"
android:height="30px"
>
<gradient
android:type="linear"
android:startColor="#ff297baf"
android:endColor="#ff16c0e3"
android:angle="270"/>
</shape>
<shape
android:shape="rectangle"
android:height="3px"
>
<solid
android:color="#FFFFFFFF"
/>
</shape>
</shape>
我正在尝试制作 3 种颜色的渐变。从纯色开始#ff297baf
,在 60% 处开始渐变,#ff297baf
并#ff16c0e3
在末尾添加一条 while 线。