【问题标题】:Single selection of Radio Button in android application在 android 应用程序中单选单选按钮
【发布时间】:2014-02-19 01:13:58
【问题描述】:

我的 android 应用程序的一个页面上有几个单选按钮,我想知道是否有人知道如何将用户的选择限制为只有一个单选按钮。

提前致谢。

【问题讨论】:

标签: java android radio-button


【解决方案1】:

确保您的单选按钮都在单选组内。它应该只允许选择一个值。示例:

 <RadioGroup
        android:id="@+id/radioSex"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <RadioButton
            android:id="@+id/radioMale"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/radio_male" 
            android:checked="true" />

        <RadioButton
            android:id="@+id/radioFemale"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/radio_female" />

    </RadioGroup>

【讨论】: