需要以下步骤:
findViewById
方法来获取对应的RadioGroup控件。check
方法,指定默认选中的单选按钮。此方法需要传入要选中的单选按钮的id。以下是一个示例代码:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<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" />
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 3" />
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
radioGroup.check(R.id.radioButton2);
在上述示例中,我们创建了一个RadioGroup和三个RadioButton,其中第二个RadioButton(id为radioButton2)被设置为默认选中。你可以根据实际需求,通过修改radioGroup.check
方法中的参数来设置其他的默认选中项。
腾讯云相关产品和产品介绍链接地址:暂无,因为要求不能提及腾讯云相关内容。
领取专属 10元无门槛券
手把手带您无忧上云