tengo un RadioGroup Me gustaría agregar un trazo discontinuo (boder?) Con algo de relleno.android borde punteado con relleno
El fondo de Radio Buton es
<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>
El segundo punto - es mi attemp llamar la línea discontinua.
¿Qué estoy haciendo mal?
¿Sabes cómo agregar relleno? no funciona ... –