我正在尝试制作一个如下图所示的可绘制对象: 3 条水平线1dp
,每条具有不同的颜色,其余空间应填充渐变:
所以我写了这个:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="line">
<stroke android:width="1dp" android:color="#c80047"/>
</shape>
</item>
<item android:top="1dp">
<shape android:shape="line" >
<stroke android:width="1dp" android:color="#5ec800"/>
</shape>
</item>
<item android:top="2dp">
<shape android:shape="line" >
<stroke android:width="1dp" android:color="#ffffff"/>
</shape>
</item>
<item android:left="0dp" android:right="0dp" android:top="3dp">
<shape android:shape="rectangle">
<gradient android:angle="-90" android:startColor="#3B3B3B"
android:endColor="#000000" />
</shape>
</item>
</layer-list>
渐变绘制正确,但 3 线保持黑色。我试图添加<stroke android:color="a_color" />
没有结果。
我错过了什么?