2015-04-24 39 views
1

我編輯setting_main.xml文件我的項目的Android Studio中,它給下面的錯誤:多根標籤錯誤的Android

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> 
+0

我不是機器人編程好,但也有一些是錯誤的,此代碼' Eka

+2

'AbsoluteLayout'已被棄用。而不是使用「LinearLayout」或「RelativeLayout」。 – Piyush

回答

2

嘗試編輯setting_main.xml like this format:

<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> 

Hope 它有助於。

+0

AbsoluteLayout已被棄用 – Piyush

1

只需從<AbsoluteLayout>替換<RadioGroup>即可。使用此代碼:

<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>