снимок экрана Как получить значения из нескольких групп радио и как решить, возвращая только первое значение
public void onClick(View v) {
int widepart=radioWidePart.getCheckedRadioButtonId();
int jawShape=radioJawShape.getCheckedRadioButtonId();
int faceLength=radiofaceLength.getCheckedRadioButtonId();
RadioButton foreheard = (RadioButton)findViewById(widepart);
RadioButton cheekbones = (RadioButton)findViewById(widepart);
RadioButton pointy=(RadioButton)findViewById(jawShape);
RadioButton square=(RadioButton)findViewById(jawShape);
RadioButton flshort=(RadioButton)findViewById(faceLength);
RadioButton flaverage=(RadioButton)findViewById(faceLength);
if(foreheard.isChecked()){
if(pointy.isChecked()){
if(flshort.isChecked()){
Intent Intents=new Intent(form.this,heart.class);
startActivity(Intents);
setContentView(R.layout.activity_heart);
}
else if(flaverage.isChecked()){
Intent Intents=new Intent(getApplicationContext(),heart.class);
startActivity(Intents);
setContentView(R.layout.activity_heart);
}
}