我正在Android Studio中创建一个基本应用程序:

有3个类别,每个类别都有一个广播组。

用户从每个类别中选择一个按钮,然后单击“选择”。

Textview应该显示一条消息,例如“您选择了中文,一级语言,猜猜城市”。

我已经解决了怎么说“您选择了中文”的问题,但无法弄清楚如何使用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");
            }
        });
    }
}

最佳答案

试试下面的代码:

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

关于java - 编码多个 radio 组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29007253/

10-10 09:35