Code Bye

Android RadioButton中怎么样去掉前面的选中的圆圈

开发项目中需要两个RadioButton水平排列 但选中的圆圈不需要,怎么去掉Android RadioButton中怎么样去掉前面的选中的圆圈
解决方案:20分
try

radiobutton_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
<item 
android:state_enabled="true"
android:state_checked="true"
android:drawable="@android:drawable/radiobutton_off_background" /> 
<item 
android:state_enabled="true" 
android:state_checked="false"
android:drawable="@android:drawable/radiobutton_off_background" />
</selector>

android:button=”@drawable/radiobutton_bg”

解决方案:20分
android:button=”@null”

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Android RadioButton中怎么样去掉前面的选中的圆圈