Computer Science, asked by Sassa575, 1 year ago

How can a user present the status of radio button ?

Answers

Answered by kashvi48
1

// get selected radio button from radioGroup

int selectedId = gender.getCheckedRadioButtonId();

// find the radiobutton by returned id

selectedRadioButton = (RadioButton)findViewById(selectedId);

// do what you want with radioButtonText (save it to database in your case)

radioButtonText = selectedRadioButton.getText().toString();

if(radioButtonText.matches(""))

{

   Toast.makeText(getApplicationContext(), "Please select Gender", Toast.LENGTH_SHORT).show();

   Log.d("QAOD", "Gender is Null");

}

else

{

   Log.d("QAOD", "Gender is Selected");

}

Similar questions