Android 坐标布局重叠容器

Android 坐标布局重叠容器,android,Android,我使用这个布局来加载它旁边的片段,但是当我在设备上运行它时,它给出了这样的结果 下面是我的代码。任何关于framelayout为什么是重叠坐标布局的建议。 谢谢你的帮助:) 这是一个使用协调器布局的xml,我想这会对您有所帮助 <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://

我使用这个布局来加载它旁边的片段,但是当我在设备上运行它时,它给出了这样的结果

下面是我的代码。任何关于framelayout为什么是重叠坐标布局的建议。 谢谢你的帮助:)



这是一个使用协调器布局的xml,我想这会对您有所帮助

<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="com.software.products.ui.activity.ToolbarUsedActivity"
    android:layoutDirection="rtl">

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

        <--!just use toolbar here-->

        <com.software.android.view.ddToolbar
            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_main2" />

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

<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="com.software.products.ui.activity.ToolbarUsedActivity"
    android:layoutDirection="rtl">

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

        <--!just use toolbar here-->

        <com.software.android.view.ddToolbar
            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_main2" />

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