MobileFirst 中的单选按钮组 Android

Radio button group in MobileFirst Android

我想在我的应用程序中放置两个单选按钮(男性和女性)。

我这样做是使用单选按钮(不是组),但问题是: 一个按钮不能取消选中也可以同时选中

RadioButton 组是一组三个按钮,我只需要两个。有没有办法让他们成为两个?

有什么帮助吗?

试试这个:

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