您好,登錄后才能下訂單哦!
要設置RadioGroup中RadioButton的默認選中項,可以在RadioGroup中指定某個RadioButton的id作為默認選中項。
例如,在布局文件中設置RadioGroup和多個RadioButton:
<RadioGroup
android:id="@+id/radio_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radio_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1"/>
<RadioButton
android:id="@+id/radio_button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 2"/>
<RadioButton
android:id="@+id/radio_button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 3"/>
</RadioGroup>
然后在代碼中設置默認選中項:
RadioGroup radioGroup = findViewById(R.id.radio_group);
RadioButton radioButton1 = findViewById(R.id.radio_button1);
radioGroup.check(radioButton1.getId());
這樣RadioButton1就會成為RadioGroup的默認選中項。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。