工具栏重叠我的片段(多窗格)

时间:2015-09-25 04:30:54

标签: android-layout android-fragments android-activity

我正在尝试在活动的水平方向上同时显示两个片段以及工具栏。但是工具栏与片段重叠。我不确定在哪里放置它。顺便说一下,工具栏附带一个导航视图,因此它位于drawerlayout中。

这是我的xml。

<android.support.v4.widget.DrawerLayout 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:id="@+id/main_drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">


    <LinearLayout
        android:id="@+id/main_content_fragments"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <android.support.v7.widget.Toolbar
            android:id="@+id/main_app_toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorPrimary"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

        <fragment
            android:id="@+id/activity_fragment_main_event_list"
            class="com.torneyo.torneyoadmin.fragments.EventListFragment"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" />

        <fragment
            android:id="@+id/activity_fragment_main_event_detail"
            class="com.torneyo.torneyoadmin.fragments.EventDetailFragment"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="3"
            android:background="?android:attr/detailsElementBackground" />

    </LinearLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/main_drawer"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/drawer_header"
        app:itemIconTint="@color/colorAccent"
        app:itemTextColor="@color/colorTextSecondary"
        app:menu="@menu/menu_drawer" />


</android.support.v4.widget.DrawerLayout>

思考?我需要让片段出现。我不确定我是否正确使用了布局。

谢谢!

1 个答案:

答案 0 :(得分:2)

您好我看到您的布局文件。我认为这个问题。它应该在相对布局内。请看下面修改过的版面版本。如果您有任何疑问,请告诉我。

$array_3 = array();

foreach ($array_1 as $key => $item)
{
    if($item == 1 || $item == 2)
    { 
        $array_3[$key] = $item;  
    } 
    else 
    {
        $array_3[$key] = 0;
    }
}