我目前有一个布局,如果用户按下选项 1 按钮,则会设置一个新布局,其中选中右侧的单选按钮。然后“Checker”按钮获得一个新的 onClick 值。如何在 java 代码中更改它,以便 option1clicked 方法将第一个单选按钮选中的值设置为“true”。
另外,在我完成之后,我如何做到这一点,以便当我单击按钮时系统会检查选中的单选按钮?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Checker"
android:onClicked="nobuttonpressed" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:text="Option 1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:onClick="option1clicked" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:checked="false"
android:layout_alignParentRight="true" />
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:text="Option 2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:onClick="option2clicked" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:checked="false"
android:layout_alignParentRight="true"/>
</RelativeLayout>
</LinearLayout>