gpt4 book ai didi

android - 单选按钮不切换其状态

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:52:51 24 4
gpt4 key购买 nike

我在布局中添加了一个 RadioButton。

它一开始是未选中的。当我点击它时,它会被选中(如模拟器所示)。但是当我再次点击它时,它不会再次变成未选中状态吗?

<RadioButton android:checked="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/option1"/>

最佳答案

如果您正在寻找具有单选按钮外观的复选框行为,您可以将 xml 样式传递给复选框。

<CheckBox android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/option1"
style="@android:style/Widget.DeviceDefault.Light.CompoundButton.RadioButton/>

这在某些情况下很有用(例如,在 RecyclerView 中使用单选按钮),但您应该小心,因为用户希望单选按钮以特定方式运行。如果您允许用户进行多项选择,您可能应该使用普通的复选框,如上面的评论中所述。

希望这对您有所帮助!

关于android - 单选按钮不切换其状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3338347/

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