0

我收到错误,例如:传递 XML 时出错:未绑定前缀属性缺少 android 命名空间前缀 ive 三元组添加:xmlns:android 但它不会识别它代码:

<RadioGroup 

andorid:orientation = "vertical"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
andorid:layout_weight = "1"
>


    <RadioButton
        android:id="@+id/radioButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />

    <RadioButton
        android:id="@+id/radioButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />

    <RadioButton
        android:id="@+id/radioButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />
    </RadioGroup>
4

3 回答 3

0
I expect below code works 100%
<?xml version="1.0" encoding="utf-8"?>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content" 
android:orientation="vertical">

<RadioButton
    android:id="@+id/radioButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="RadioButton" />

<RadioButton
    android:id="@+id/radioButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="RadioButton" />

<RadioButton
    android:id="@+id/radioButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="RadioButton" />

</RadioGroup>

您可以使用 android:weightSum="" 代替 android:layout_weight="" 。

于 2014-02-01T17:16:33.857 回答
0

首先,您必须为您的按钮设置不同的 ID:

    <RadioGroup 

 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 >


<RadioButton
    android:id="@+id/radioButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="RadioButton" />

<RadioButton
    android:id="@+id/radioButton2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="RadioButton" />

<RadioButton
    android:id="@+id/radioButton3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="RadioButton" />
</RadioGroup>

第二......这是整个xml吗?你必须设置

    <?xml version="1.0" encoding="utf-8"?>

一开始和

    xmlns:android="http://schemas.android.com/apk/res/android"

到广播组

于 2013-06-11T22:18:34.053 回答
0

如果您更改 RadioButtons Id,它可以工作!=D

于 2013-06-11T22:34:03.680 回答