gpt4 book ai didi

android - 可以允许在 Android 应用程序中取消选中所有单选按钮吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:58:58 25 4
gpt4 key购买 nike

只是想看看是否有人知道是否有 radiogroup 或 radiobutton 属性或其他一些快速的东西可以让单选按钮在选中模式下被取消选中。我希望构建像 radio 组一样工作的功能(即只能检查一个),但我也希望它们能够全部取消选中。

最佳答案

也许我不明白这里的问题,但这是我想做的事情。我有一个 Activity 可以用来对许多图片进行分类。我正在使用单选按钮进行分类。在用户选中其中一个选项后,他可以切换到下一张图片。我需要在切换图片时清除选择,但决定不创建新 Activity 。

所以我在这样的布局中初始化我的 radio 组:

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

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

<RadioButton
android:id="@+id/radio_false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:text="@string/false" />
</RadioGroup>

这会初始化我的单选组,并且 RadioButton 最初都没有被选中。之后,当我更改图片时,我需要清除选择(因为用​​户尚未选择新图片)。我喜欢这样:

RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radio_selection);
radioGroup.clearCheck();

这正是我需要的:再次使所有单选按钮都没有被选中。我希望我理解了这个问题,这对将来的人有所帮助。

关于android - 可以允许在 Android 应用程序中取消选中所有单选按钮吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6434250/

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