現在、ユーザーがオプション1ボタンを押すと、右側のラジオボタンがチェックされている新しいレイアウトが設定されるレイアウトがあります。次に、「Checker」ボタンが新しい onClick 値を取得します。option1clickedメソッドが最初のラジオボタンのチェック値を「true」に設定するように、Javaコード内でこれを変更するにはどうすればよいですか。
また、それを行った後、ボタンをクリックしたときにシステムがどのラジオボタンがチェックされているかをチェックするようにするにはどうすればよいですか?
<?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>