我有一个 RadioGroup
我想添加一个带有一些填充的虚线笔划(边框?)。
Radio Button的背景是
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/navigation"/>
<item >
<shape>
<solid android:color="#00000000"/>
<stroke android:color="#ffffff"
android:dashGap="5dp"
android:dashWidth="5dp"/>
</shape>
</item>
</layer-list>
第二项 - 是我尝试绘制虚线。
我究竟做错了什么?