编码多个RadioGroups

时间:2015-03-12 10:27:10

标签: java android xml eclipse

我在Android Studio中创建了一个基本应用:

每个类别都有3个类别的无线电组。

用户从每个类别中选择一个按钮然后点击"选择"。

Textview应该显示一条消息,例如"你选择了中文,1级,猜猜城市"。

我已经找到了如何说"你选择了中文"但无法弄清楚如何使用if条件添加其余内容。有什么想法吗?

<TextView android:id="@+id/text" />
<RadioGroup android:id="@+id/radio1">
    <RadioButton id="@+id/chinese"
        android:text="@string/chinese" />
    <RadioButton android:id="@+id/indian"
        android:text="@string/indian" />
    <RadioButton android:id="@+id/russian"
        android:text="@string/russian" />
</RadioGroup>
<RadioGroup android:id="@+id/radio2">
    <RadioButton android:id="@+id/difficulty1"
        android:text="@string/starter" />
    <RadioButton android:id="@+id/difficulty2"
            android:text="@string/medium" />
    <RadioButton android:id="@+id/difficulty3"
            android:text="@string/expert" />
</RadioGroup>
<RadioGroup android:id="@+id/radio3">
    <RadioButton android:id="@+id/challenge1"
            android:text="@string/buildingbricks" />
    <RadioButton android:id="@+id/challenge2"
            android:text="@string/callcentre" />
    <RadioButton android:id="@+id/challenge3"
            android:text="@string/city" />
</RadioGroup>

public class MainActivity extends Activity {
    private RadioGroup radioGroup1
    private RadioButton chinese, indian, russian;
    private Button button;
    private TextView textView;

    public String string_first_radiogroup, 

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        radioGroup1 = (RadioGroup) findViewById(R.id.radio1);


        radioGroup1.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                if(checkedId == R.id.chinese) {
                    string_first_radiogroup="Chinese";
                } else if(checkedId == R.id.indian) {
                    string_first_radiogroup="Indian"; 
                } else {
                    string_first_radiogroup="Russian";
                }
            }
        });

        chinese = (RadioButton) findViewById(R.id.chinese);
        indian = (RadioButton) findViewById(R.id.indian);
        russian = (RadioButton) findViewById(R.id.russian);
        textView = (TextView) findViewById(R.id.text);


        button = (Button)findViewById(R.id.choose);
        button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                textView.setText("You chose " + string_first_radiogroup + " option");
            }
        });
    }
}

1 个答案:

答案 0 :(得分:1)

尝试以下代码:

button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                textView.setText("You chose " + ((RadioButton)findViewById(radioGroup1.getCheckedRadioButtonId())).getText() + " option");
            }
        });