我正在尝试为类似于此的listview项目做背景。表示所选项目的蓝线对其产生了影响。我想要那个:
我能得到的是这样的:
我一直在寻找一个约3个小时的解决方案,所以非常感谢帮助。怎么实现呢?以下是我在drawable中提出的内容:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/dark_brown" />
<size android:width="5dp" />
</shape>
</item>
<item android:left="5dp"
android:right="180dp">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="@color/dark_brown"
android:endColor="@color/text_light"
android:angle="0" />
</shape>
</item>
<item android:left="5dp">
<shape android:shape="rectangle">
<solid android:color="@color/text_light" />
</shape>
</item>
</layer-list>
答案 0 :(得分:0)
我相信你想要的是实心条右边的渐变,渐变为透明或细胞的背景颜色。你想要调整它的大小,并且可能添加一个centerColor以使它看起来恰到好处,但这应该让你更接近你正在寻找的东西。
正如清障人士所说,你也可以使用图像(如9补丁)