回答:
ラジオグループがレイアウトxmlファイルで定義されている場合、各ボタンにIDを割り当てることができます。次に、このようなボタンをチェックするだけです
radioGroup.check(R.id.myButtonId);
プログラムでラジオグループを作成した場合(どうすればいいのかさえわかりません...)、R.id. * idを割り当てることができるように、ラジオグループ専用の特別なレイアウトxmlファイルを作成することを検討してください。ボタンに。
ラジオボタングループをインデックスで設定しようとしている場合は、以下の回答を参照してください。以下の回答を参照してください。
((RadioButton)radioGroup.getChildAt(index)).setChecked(true);
check
メソッドの引数として使用できます。
「選択したINDEXを設定する」という質問で、インデックスで設定する方法は次のとおりです。
((RadioButton)radioGroup.getChildAt(index)).setChecked(true);
........
追加情報:idを使用する方がバグの証拠になるため、Googleではインデックスの代わりにidを使用するように求めているようです。たとえば、RadioGroupに別のUI要素がある場合、または別の開発者がRadioButtonを並べ替えると、インデックスが変更され、期待どおりにならない場合があります。しかし、あなたが唯一の開発者であれば、これはまったく問題ありません。
シアバシュの答えは正しいです:
((RadioButton)radioGroup.getChildAt(index)).setChecked(true);
ただし、radioGroupには、radioButtons以外のビューを含めることができることに注意してください。この例のように、各選択肢の下にかすかな線が含まれています。
<RadioGroup
android:id="@+id/radioKb"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/kb1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:text="Onscreen - ABC" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#33000000" />
<RadioButton
android:id="@+id/kb2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:text="Onscreen - Qwerty" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#33000000" />
<RadioButton
android:id="@+id/kb3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:text="Standard softkey" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#33000000" />
<RadioButton
android:id="@+id/kb4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:text="Physical keyboard" />
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#33000000" />
</RadioGroup>
この場合、たとえば1のインデックスを使用すると、エラーが発生します。インデックス1のアイテムは、radioButtonではなく、最初の区切り線です。この例のradioButtonは、インデックス0、2、4、6にあります。
これは私のために働きました、私はラジオボタンを動的に作成しました
private void createRadioButton() {
RadioButton[] rb = new RadioButton[5];
RadioGroup.LayoutParams layoutParams = new RadioGroup.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT,
1.0f);
radioGroup.setOrientation(RadioGroup.HORIZONTAL);
for (int ID = 0; ID < 5; ID++) {
rb[ID] = new RadioButton(this);
rb[ID].setLayoutParams(layoutParams);
rb[ID].setText("Button_Text");
radioGroup.addView(rb[ID]); //the RadioButtons are added to the radioGroup instead of the layout
}
}
次に、次を使用してボタンを確認します。
int radio_button_Id = radioGroup.getChildAt(index).getId();
radioGroup.check( radio_button_Id );
onBindViewHolder内でタグをボタングループに設定します
@Override
public void onBindViewHolder(final CustomViewHolder holder, final int position) {
...
holder.ButtonGroup.setTag(position);
}
そしてViewHolderで
ButtonGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
...
int id = radioGroup.getCheckedRadioButtonId();
RadioButton radioButton = (RadioButton) radioGroup.findViewById(id);
int clickedPos = (Integer) radioGroup.getTag();
packageModelList.get(clickedPos).getPoll_quest()
}