我试图让导航抽屉内的碎片填满屏幕(match_parent),即用户选择抽屉内的设置,设置frag打开填充屏幕。然而,对于我当前的布局,具有测试按钮的父(主)活动保持在屏幕上,即片段不仅仅填充屏幕的一部分。我非常擅长使用frags和nag抽屉,我确信它很简单,任何帮助都很受欢迎。
我的活动布局xml与片段容器:
<?xml version="1.0" encoding="utf-8"?>
<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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/container_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
</LinearLayout>
<LinearLayout
android:id="@+id/container_body"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/btn_category"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:text="Movies"
/>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
<fragment
android:id="@+id/fragment_navigation_drawer"
android:name="com.app.fragments.MainDrawerFragment"
android:layout_width="@dimen/nav_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
app:layout="@layout/fragment_main_navigation_drawer"
tools:layout="@layout/fragment_main_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
我认为我设法通过更好地理解导航抽屉来解决这个问题。
我已从上面的DrawerLayout中删除了该按钮,而是创建了一个&#34; home&#34;片段是抽屉ArrayList中的元素0(并在这里添加了按钮),我已经设置了主要活动来在元素0上的片段上调用displayView()(使用上面的按钮),现在设置例如在ArrayList中的元素1中,并且只是当选择叠加元素0(主页)。
不确定它是否正确,但现在可以正常使用。