gpt4 book ai didi

android - AppCompatRadioButton 的 RadioGroup 不适用于 Jelly Bean?

转载 作者:太空狗 更新时间:2023-10-29 14:02:53 30 4
gpt4 key购买 nike

我使用支持库中的 AppCompatRadioButtons 创建了一个相当简单的单选按钮组。但是,该小组似乎不适用于 Lollipop 之前的版本。我能够选择每个选项,但找不到任何说明它为什么这样做的迹象。

我正在使用运行 4.1 的模拟器进行测试。正如您在下面看到的,我可以选择多个选项。

enter image description here

<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="W"/>

<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Q"/>

<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="B-Hum"/>

<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="B-Sci"/>

<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="B-Soc"/>
</RadioGroup>

在 Lollipop 和 Marshmallow 上进行测试可获得所需的结果。

最佳答案

为每个 AppCompatRadioButton 定义一个唯一的 ID。例如:

<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radio_w"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="W"/>

<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radio_q"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Q"/>

<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radio_bhum"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="B-Hum"/>

<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radio_bsci"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="B-Sci"/>

<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radio_bsoc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="B-Soc"/>

</RadioGroup>

关于android - AppCompatRadioButton 的 RadioGroup 不适用于 Jelly Bean?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34411439/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com