多个根标签错误Android

时间:2015-04-24 06:54:06

标签: android android-layout android-activity android-studio

我正在Android Studio中编辑项目的setting_main.xml文件,并给出以下错误:

Multiple Root Tags

代码阻止

<AbsoluteLayout> 
    <RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

        <RadioButton ... />
        <RadioButton ... />

    </RadioGroup>

    <TextView ... />

    <Button ... />

</AbsoluteLayout>

2 个答案:

答案 0 :(得分:2)

尝试按照以下格式编辑setting_main.xml

<AbsoluteLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RadioGroup 
         ...>

        <RadioButton
             ...
             />

        <RadioButton
             ... 
             />
    </RadioGroup>

    <TextView
        ... />

    <Button
        ... />

</AbsoluteLayout>

希望它有所帮助。

答案 1 :(得分:1)

只需从<RadioGroup>替换<AbsoluteLayout>即可。使用此代码:

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RadioGroup
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
...
    </RadioGroup>
...
</AbsoluteLayout>