Eu tenho dois RadioButton
s dentro de um RadioGroup
. Eu quero definir OnClickListener
nesses RadioButton
s. Dependendo de qual RadioButton
for clicado, desejo alterar o texto de um EditText
. Como posso conseguir isso?
Eu tenho dois RadioButton
s dentro de um RadioGroup
. Eu quero definir OnClickListener
nesses RadioButton
s. Dependendo de qual RadioButton
for clicado, desejo alterar o texto de um EditText
. Como posso conseguir isso?
Respostas:
Eu acho que a melhor maneira é usar RadioGroup
e definir o ouvinte para alterar e atualizar o de View
acordo (evita que você tenha 2 ou 3 ou 4 ouvintes etc.).
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.yourRadioGroup);
radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// checkedId is the RadioButton selected
}
});
Espero que isso ajude você ...
RadioButton rb = (RadioButton) findViewById(R.id.yourFirstRadioButton);
rb.setOnClickListener(first_radio_listener);
e
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
é necessário em RadioButton rb=(RadioButton)group.findViewById(checkedId);
A pergunta era sobre como detectar qual botão de opção foi clicado, é assim que você pode obter qual botão foi clicado
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;
}
}
});
Você também pode adicionar ouvinte do layout XML: android:onClick="onRadioButtonClicked"
em sua <RadioButton/>
tag.
<RadioButton android:id="@+id/radio_pirates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pirates"
android:onClick="onRadioButtonClicked"/>
Consulte SDK - botões de rádio para desenvolvedores Android para obter detalhes.
Apenas no caso de outra pessoa estar lutando com a resposta aceita:
Existem diferentes interfaces OnCheckedChangeListener. Eu adicionei a primeira para ver se um CheckBox foi alterado.
import android.widget.CompoundButton.OnCheckedChangeListener;
vs
import android.widget.RadioGroup.OnCheckedChangeListener;
Ao adicionar o snippet de Ricky, tive erros:
O método setOnCheckedChangeListener (RadioGroup.OnCheckedChangeListener) no tipo RadioGroup não é aplicável para os argumentos (new CompoundButton.OnCheckedChangeListener () {})
Pode ser corrigido com a resposta de Ali:
new RadioGroup.OnCheckedChangeListener()
Como essa pergunta não é específica do Java, gostaria de acrescentar como você pode fazer isso no 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
}
}
})
Aqui radio_group_id
está a atribuição android:id
do RadioGroup em questão. Para usá-lo dessa forma, você precisaria importar kotlinx.android.synthetic.main.your_layout_name.*
o arquivo Kotlin da sua atividade. Observe também que, caso o radioGroup
parâmetro lambda não seja usado, ele pode ser substituído por _
(um sublinhado) desde o 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()
});
Para Kotlin Aqui é adicionada a expressão lambda e otimizado o código.
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
}
}
}
Espero que isso ajude você. Obrigado!