RadioButton
内に2つのがありRadioGroup
ます。私OnClickListener
はそれらを設定したいと思いRadioButton
ます。どちらRadioButton
をクリックするかに応じて、のテキストを変更しますEditText
。どうすればこれを達成できますか?
RadioButton
内に2つのがありRadioGroup
ます。私OnClickListener
はそれらを設定したいと思いRadioButton
ます。どちらRadioButton
をクリックするかに応じて、のテキストを変更しますEditText
。どうすればこれを達成できますか?
回答:
私はより良い方法はそれに応じRadioGroup
て変更および更新するためにリスナーを使用および設定することだと思いますView
(2つまたは3つまたは4つなどのリスナーを節約します)。
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.yourRadioGroup);
radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected
}
});
これがあなたを助けることを願っています...
RadioButton rb = (RadioButton) findViewById(R.id.yourFirstRadioButton);
rb.setOnClickListener(first_radio_listener);
そして
OnClickListener first_radio_listener = new OnClickListener (){
public void onClick(View v) {
//Your Implementaions...
}
};
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
{
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected
RadioButton rb=(RadioButton)findViewById(checkedId);
textViewChoice.setText("You Selected " + rb.getText());
//Toast.makeText(getApplicationContext(), rb.getText(), Toast.LENGTH_SHORT).show();
}
});
group
で必要とされる RadioButton rb=(RadioButton)group.findViewById(checkedId);
問題は、どのラジオボタンがクリックされたかを検出することでした。これが、どのボタンがクリックされたかを取得する方法です。
final RadioGroup radio = (RadioGroup) dialog.findViewById(R.id.radioGroup1);
radio.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
View radioButton = radio.findViewById(checkedId);
int index = radio.indexOfChild(radioButton);
// Add logic here
switch (index) {
case 0: // first button
Toast.makeText(getApplicationContext(), "Selected button number " + index, 500).show();
break;
case 1: // secondbutton
Toast.makeText(getApplicationContext(), "Selected button number " + index, 500).show();
break;
}
}
});
タグandroid:onClick="onRadioButtonClicked"
に、XMLレイアウトからリスナーを追加することもできます<RadioButton/>
。
<RadioButton android:id="@+id/radio_pirates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pirates"
android:onClick="onRadioButtonClicked"/>
詳細については、Android開発者SDK-ラジオボタンを参照してください。
他の誰かが受け入れられた答えで苦労していた場合に備えて:
OnCheckedChangeListener-Interfacesはいくつかあります。CheckBoxが変更されたかどうかを確認するために、最初のものに追加しました。
import android.widget.CompoundButton.OnCheckedChangeListener;
対
import android.widget.RadioGroup.OnCheckedChangeListener;
リッキーからスニペットを追加すると、エラーが発生しました:
タイプRadioGroupのメソッドsetOnCheckedChangeListener(RadioGroup.OnCheckedChangeListener)は引数に適用できません(新しいCompoundButton.OnCheckedChangeListener(){})
アリからの回答で修正できます:
new RadioGroup.OnCheckedChangeListener()
この質問はJavaに固有のものではないため、Kotlinでそれを行う方法を追加したいと思います。
radio_group_id.setOnCheckedChangeListener({ radioGroup, optionId -> {
when (optionId) {
R.id.radio_button_1 -> {
// do something when radio button 1 is selected
}
// add more cases here to handle other buttons in the RadioGroup
}
}
})
ここでradio_group_id
割り当てられているandroid:id
懸念RADIOGROUPの。この方法で使用するにkotlinx.android.synthetic.main.your_layout_name.*
は、アクティビティのKotlinファイルにインポートする必要があります。また、radioGroup
ラムダパラメータが使用されていない場合は_
、Kotlin 1.1以降では(アンダースコア)に置き換えることができます。
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.yourRadioGroup);
radioGroup.setOnClickListener(v -> {
// get selected radio button from radioGroup
int selectedId = radioGroup.getCheckedRadioButtonId();
// find the radiobutton by returned id
radioButton = findViewById(selectedId);
String slectedValue=radioButton.getText()
});
Kotlin Hereには、ラムダ式が追加され、コードが最適化されています。
radioGroup.setOnCheckedChangeListener { radioGroup, optionId ->
run {
when (optionId) {
R.id.radioButton1 -> {
// do something when radio button 1 is selected
}
R.id.radioButton2 -> {
// do something when radio button 2 is selected
}
// add more cases here to handle other buttons in the your RadioGroup
}
}
}
これがお役に立てば幸いです。ありがとう!