<framelayout>的多个根标签

时间:2015-11-28 13:57:19

标签: android-layout android-fragments android-studio

我一直收到多个根标签,我不知道为什么我有这个错误,任何善良的灵魂请向我解释为什么会这样?在此先感谢:)顺便说一句,我正在尝试在空白活动上做一个地理位置。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout
 android:layout_height="wrap_content"
 android:layout_width="match_parent"   
android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar android:id="@+id/toolbar"
        android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
android:background="attr/colorPrimary"app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" />

<android.support.design.widget.FloatingActionButton android:id="@+id/fab"
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"     
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>


<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.app.MainActivity"
tools:ignore="MergeRootFrame" >

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"><fragment
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:name="com.google.android.gms.maps.MapFragment"
android:id="@+id/map" />
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

行:

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

应该出现在根元素中,也就是说,只有一次在顶部,你有两次,一个XML文档只能有一个根元素,所以你还需要在底部包装结束标记。

类似的东西:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
    >

   <android.support.design.widget.CoordinatorLayout
        android:id="@+id/some_coordinator"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >

    <!--stuff you want inside the coordinator ... -->
   </android.support.design.widget.CoordinatorLayout>

   <!--stuff you want in general here ... -->
  </RelativeLayout>

希望这有助于:)

答案 1 :(得分:0)

1)在线性布局中包含所有其他小部件

<LinearLayout
android:layout_width...
>
<EditText
android:..
/>
<?LinearLayout>

因为,只能有一个根元素。

2)在xlmns字段(开头)中添加所有LinearLayout语句而不重复。 xlmns应出现在父根目录中。