我使用 shape drawable 来绘制背景,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#888888"
android:endColor="#888888"
android:angle="270"/>
<corners android:topLeftRadius="4dip"
android:topRightRadius="4dip"/>
<stroke
android:width="2dip"
android:color="#666666"
android:dashWidth="10dip"
android:dashGap="0dip" />
</shape>
我想设置没有中风的底边。
我该如何修改它?