我的问题很奇怪......
当我做的时候:
<RadioButton
android:text="Simple"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radioButtonFenetresSimple"
android:layout_weight="1"
android:tag="1"
android:checked="false" />
radioButton的风格&#34;简单&#34;在屏幕截图中显示单选按钮内部没有着色...
我的xml是基本的:
{{1}}setChecked时的
你有这个问题吗?
感谢&#39; S
答案 0 :(得分:1)
试试这些
RadioButton simple;
simple= (RadioButton) findViewById(R.id.radioButtonFenetresSimple);
simple.setChecked(true);
simple.performClick();