【问题标题】:Coding Multiple RadioGroups编码多个无线电组
【发布时间】:2015-03-12 10:27:10
【问题描述】:

我正在 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");
            }
        });
    }
}

【问题讨论】:

    标签: java android xml eclipse


    【解决方案1】:

    试试下面的代码:

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

    【讨论】:

    • 感谢普拉蒂克!我已经添加了代码。我现在如何为第二个和第三个无线电组添加“if”语句?
    猜你喜欢
    • 2013-06-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-10-18
    • 2021-01-29
    • 1970-01-01
    相关资源
    最近更新 更多