RadioButton中如何去掉前面的選中的圓圈?
一、定義一個style,然后設置一個item屬性為@null
<style name="style">
<item name="android:button">@null</item>
</style>
二、RadioButton引用下就OK
<RadioButton
style="@style/style"
/>
下一篇uast是什么
RadioButton中如何去掉前面的選中的圓圈?
一、定義一個style,然后設置一個item屬性為@null
<style name="style">
<item name="android:button">@null</item>
</style>
二、RadioButton引用下就OK
<RadioButton
style="@style/style"
/>