Android API Level 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>
该应用程序启动如下:
如果我点击Jazz,就会变成这样:
答案 0 :(得分:3)
您的布局缺少android:id
小部件的RadioButton
值。如果你没有在布局资源中预先检查过任何一个,那么这可以工作。如果要在布局资源中使用android:checked
,则需要将窗口小部件ID分配给RadioButton
窗口小部件。这是a long-standing issue不太可能改变,所以&#34;它只是其中之一&#34;我们必须在Android应用开发中处理。