要设置 Android RadioButton 控件的选中状态,可以使用 setChecked()
方法。可以在 Java 代码中使用该方法来设置 RadioButton 的选中状态为 true 或 false。
例如,如果想要将一个 RadioButton 控件设置为选中状态,可以这样做:
RadioButton radioButton = findViewById(R.id.radioButton);
radioButton.setChecked(true);
如果想要取消一个 RadioButton 的选中状态,可以将 setChecked()
方法的参数设置为 false:
RadioButton radioButton = findViewById(R.id.radioButton);
radioButton.setChecked(false);
此外,还可以使用 XML 布局文件中的 android:checked
属性来设置 RadioButton 控件的初始选中状态。例如:
<RadioButton
android:id="@+id/radioButton"
android:text="Option 1"
android:checked="true" />
以上是设置 Android RadioButton 控件选中状态的方法,希望可以帮到你。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。