最佳答案
我使用绘图作为 TextView 的背景,只是为了在文本下面有一个分隔线。通过这个可绘制的 xml 实现了这一点:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:shape="rectangle">
<solid android:color="#FFDDDDDD" />
<gradient
android:angle="0"
android:startColor="#FFAAAAAA"
android:endColor="#FFEEEEEE"
/>
</shape>
</item>
<item android:bottom="2dp">
<shape
android:shape="rectangle">
<solid android:color="#FF000000" />
</shape>
</item>
</layer-list>
但此方法在黑色矩形上绘制有色矩形。我希望只有在形状的底部没有黑色矩形线,因为黑色是不透明的。我怎么才能做到呢?