检查单选按钮android风格inccorect

时间:2016-12-07 21:21:23

标签: android radio-button

我的问题很奇怪......

当我做的时候:

                     <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时的

结果: sample radio button problem

你有这个问题吗?

感谢&#39; S

1 个答案:

答案 0 :(得分:1)

试试这些

RadioButton simple;
simple= (RadioButton) findViewById(R.id.radioButtonFenetresSimple);
simple.setChecked(true);
simple.performClick();