以下のようにしたいと思います。ラジオ・グループの2つの線形レイアウトでラジオ・ボタンを操作できない
私は、リニアレイアウトが、ラジオグループ内のネットワークを使用して設計してみました。 ラジオのグループでは、縦または横の向きが2つしかないので、どうすればこのように達成できますか?
同じラジオグループに属している必要があるのは、同じ質問のオプションです。
ありがとうございます。
以下のようにしたいと思います。ラジオ・グループの2つの線形レイアウトでラジオ・ボタンを操作できない
私は、リニアレイアウトが、ラジオグループ内のネットワークを使用して設計してみました。 ラジオのグループでは、縦または横の向きが2つしかないので、どうすればこのように達成できますか?
同じラジオグループに属している必要があるのは、同じ質問のオプションです。
ありがとうございます。
これを試してください。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
</RadioGroup>
<RadioGroup
android:id="@+id/radioGroup2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/radio3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
<RadioButton
android:id="@+id/radio4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
</RadioGroup>
</LinearLayout>
Javaコード:
private OnCheckedChangeListener listener1 = new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if (checkedId != -1) {
m_group2.setOnCheckedChangeListener(null); // remove the listener before clearing so we don't throw that stackoverflow exception(like Vladimir Volodin pointed out)
m_group2.clearCheck(); // clear the second RadioGroup!
m_group2.setOnCheckedChangeListener(listener2); //reset the listener
// Log.e("XXX2", "do the work");
int chkId1 = m_group1.getCheckedRadioButtonId();
int chkId2 = m_group2.getCheckedRadioButtonId();
int realCheck = chkId1 == -1 ? chkId2 : chkId1;
RadioButton rb = (RadioButton)findViewById(realCheck);
selected_mode = rb.getText().toString();
Log.i("Selected_Mode", "" + selected_mode);
}
}
};
private OnCheckedChangeListener listener2 = new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if (checkedId != -1) {
m_group1.setOnCheckedChangeListener(null);
m_group1.clearCheck();
m_group1.setOnCheckedChangeListener(listener1);
//Log.e("XXX2", "do the work");
int chkId1 = m_group1.getCheckedRadioButtonId();
int chkId2 = m_group2.getCheckedRadioButtonId();
int realCheck = chkId1 == -1 ? chkId2 : chkId1;
RadioButton rb = (RadioButton)findViewById(realCheck);
selected_mode = rb.getText().toString();
Log.i("Selected_Mode", "" + selected_mode);
}
}
};
コールOnCreateイベントにリスナー()あなたが確認するために、2つの異なるラジオ・グループを使用してコードでそれを処理する必要が
m_group1.setOnCheckedChangeListener(listener1);
m_group2.setOnCheckedChangeListener(listener2);
私はちょうど1つのグループでそれをしたい。 –
なぜ1つのグループが必要ですか? –
なぜ私は1つのオプションをチェックしなければならないので、その私のオプションは –
両方のグループから選択できるラジオボタンは1つだけです –
[このリンク]を見ることができます(http://stackoverflow.com/a/ 43735636/2715073)私が別の投稿で答えました。 – Pankaj
[このリンク](http://stackoverflow.com/a/43735636/2715073)に別の投稿で私が答えることができます。 – Pankaj