RadioButtonのチェックを一つだけデフォルトでチェック状態にする方法(メモ)
コード上でRadioGroup
にaddしていく場合
RadioGroup radioGroup = new RadioGroup(this);
RadioButton radioBtn1 = new RadioButton(this);
RadioButton radioBtn2 = new RadioButton(this);
RadioButton radioBtn3 = new RadioButton(this);
radioBtn1.setText("hoge");
radioBtn2.setText("huga");
radioBtn3.setText("piyo");
radioGroup.addView(radioBtn1);
radioGroup.addView(radioBtn2);
radioGroup.addView(radioBtn3);
// この一行がないと、他がチェック状態になってもチェックが移らない
radioGroup.check(radioBtn1.getId());
Author And Source
この問題について(RadioButtonのチェックを一つだけデフォルトでチェック状態にする方法(メモ)), 我々は、より多くの情報をここで見つけました https://qiita.com/MuuKojima/items/83873da03b2d06ed0c4f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .