是否有一个简单的方法来获得在Android中一个RadioGroup的选定索引,或者我必须使用OnCheckedChangeListener来监听变化,并有一些东西,保持选定的最后一个索引?
示例xml:
<RadioGroup android:id="@+id/group1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical">
<RadioButton android:id="@+id/radio1" android:text="option 1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio2" android:text="option 2" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio3" android:text="option 3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio4" android:text="option 4" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio5" android:text="option 5" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</RadioGroup>
如果用户选择选项3,我想获取索引2。
您已经为每个单选按钮分配了一个id。使用case block,你可以手动检测选中的单选按钮,或者使用OnCheckedChangeListener,你也可以得到它。
xml:
<RadioGroup
android:id="@+id/rd_group_pick_reason"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/ti_titel"
android:orientation="horizontal"
android:paddingHorizontal="16dp"
>
<com.google.android.material.radiobutton.MaterialRadioButton
android:id="@+id/rd_not_deliverable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="@string/txt_not_deliverable"
android:checked="true"
/>
<com.google.android.material.radiobutton.MaterialRadioButton
android:id="@+id/rd_after_pack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="@string/txt_after_pack"
/>
</RadioGroup>
java:
final RadioGroup radioGroup = dialogView.findViewById(R.id.rd_group_pick_reason);
switch (radioGroup.getCheckedRadioButtonId()) {
case R.id.rd_not_deliverable:
// TODO
break;
case R.id.rd_after_pack:
// TODO
break;
}
or
radioGroup.setOnCheckedChangeListener((group, checkedId) -> {
switch (group.getCheckedRadioButtonId()) {
case R.id.rd_not_deliverable:
System.out.println("not deliverable");
break;
case R.id.rd_after_pack:
System.out.println("after pack");
break;
}