从android中的每个radiogroup中选择至少一个单选按钮?

时间:2014-01-18 11:37:13

标签: java android radio-button

如何确保用户至少从每个放射组中检查一个单选按钮。就像我有这个无线电组:

<RadioGroup
    android:id="@+id/myradio_group_one"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="first"
        android:checked="true" />

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="second" />

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="third" />

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="fourt" />
</RadioGroup>

<RadioGroup
    android:id="@+id/myradio_group_two"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="first"
        android:checked="true" />

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="second" />

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="third" />

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="fourt" />
</RadioGroup>

我想以编程方式检查用户是否选择了至少一个radiobutton?

5 个答案:

答案 0 :(得分:15)

获取RadioGroup的引用,然后在广播组中调用getCheckedRadioButtonId(),如果未选择任何内容,则该调用将返回-1

请参阅public int getCheckedRadioButtonId ()

答案 1 :(得分:6)

RadioGroup g = (RadioGroup) findViewById(R.id.rBtnDigits); 

// Returns an integer which represents the selected radio button's ID
int selected = g.getCheckedRadioButtonId();

// Gets a reference to our "selected" radio button
RadioButton b = (RadioButton) findViewById(selected);

// Now you can get the text or whatever you want from the "selected" radio button
b.getText();

答案 2 :(得分:3)

if (radioGroup.getCheckedRadioButtonId() != -1)
{
  // hurray at-least on radio button is checked. 
}
else
{
  // pls select at-least one radio button.. since id is -1 means no button is check
}

答案 3 :(得分:2)

这是我在我的一个测验应用程序中使用过的代码..如果有帮助,请查看代码..

private boolean checkAnswer(){
        String answer = getSelection();
        if(answer==null) {
            Log.d("Questions", "No checkbox selected");
            return false;
        }
        else {
        //  Do your stuff here
            return true;
        }

    }


    private String getSelection(){


        if (c1.isChecked())
        {
            return c1.getText().toString();
        }
        if (c2.isChecked())
        {
            return c2.getText().toString();
        }
        if (c3.isChecked())
        {
            return c3.getText().toString();
        }
        if (c4.isChecked())
        {
            return c4.getText().toString();
        }

        return null;

    }

答案 4 :(得分:1)

您可以使用此方法

radioGroup.getCheckedRadioButtonId();
  

它返回该组中所选单选按钮的标识符。选择空时,返回的值为-1。

如文档https://developer.android.com/reference/android/widget/RadioGroup.html#getCheckedRadioButtonId()

中所述