Android RadiGroup允许多选
Android RadiGroup allows multiple selection
Android API 如果我最初 pre-select 多个 RadioButton,Level 24(模拟器)似乎允许多项选择。我只想知道这是不是bug?
这是布局文件:
<?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>
应用程序启动如下:
如果我点击 Jazz,它会变成这样:
您的布局缺少 android:id
个 RadioButton
小部件的值。如果您没有从布局资源中预先检查的任何一个开始,那可以工作。如果您打算在布局资源中使用 android:checked
,则需要将小部件 ID 分配给 RadioButton
小部件。这是 a long-standing issue 不太可能改变的,所以 "it's just one of those things" 我们必须在 Android 应用程序开发中处理。
Android API 如果我最初 pre-select 多个 RadioButton,Level 24(模拟器)似乎允许多项选择。我只想知道这是不是bug?
这是布局文件:
<?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>
应用程序启动如下:
如果我点击 Jazz,它会变成这样:
您的布局缺少 android:id
个 RadioButton
小部件的值。如果您没有从布局资源中预先检查的任何一个开始,那可以工作。如果您打算在布局资源中使用 android:checked
,则需要将小部件 ID 分配给 RadioButton
小部件。这是 a long-standing issue 不太可能改变的,所以 "it's just one of those things" 我们必须在 Android 应用程序开发中处理。