gpt4 book ai didi

Android RadiGroup允许多选

转载 作者:太空宇宙 更新时间:2023-11-03 13:44:25 24 4
gpt4 key购买 nike

如果我最初预选多个 RadioButton,Android API 级别 24(模拟器)似乎允许多项选择。我只想知道这是不是一个错误?

这是布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

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

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/metal"
android:checked="true"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/classical"
android:checked="true"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/jazz"/>

</RadioGroup>

</LinearLayout>

应用启动如下:

enter image description here

如果我点击 Jazz,它会变成这样:

enter image description here

最佳答案

您的布局缺少 RadioButton 小部件的 android:id 值。如果您没有从布局资源中预先检查的任何一个开始,那可以工作。如果您要在布局资源中使用 android:checked,您需要将小部件 ID 分配给 RadioButton 小部件。这是 a long-standing issue这不太可能改变,因此“这只是其中之一”我们在 Android 应用程序开发中必须处理。

关于Android RadiGroup允许多选,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45513797/

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