android studio单选按钮,在Android Studio中设置默认单选按钮
时间: 2023-12-04 09:27:53 浏览: 95
要设置默认单选按钮,需要在布局文件中指定所需的单选按钮的属性。具体来说,可以将某个单选按钮的“checked”属性设置为“true”,以将其设置为默认选项。
例如,假设我们有三个单选按钮,它们的ID分别为“radioButton1”、“radioButton2”和“radioButton3”。如果我们想要将“radioButton2”设置为默认选项,我们可以在布局文件中将其“checked”属性设置为“true”,如下所示:
```
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1"/>
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 2"
android:checked="true"/>
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 3"/>
</RadioGroup>
```
在上面的示例中,“radioButton2”被设置为默认选项,因为它的“checked”属性被设置为“true”。
阅读全文