我的问题很可能很容易解决,但遗憾的是我无法解决问题。我使用Android Studio提供的版本设置了NavigationDrawer
。我的问题是,我无法使FrameLayout
适合appbar,而不会使NavigationDrawer
无法使用。我尝试过几个方面,比如使用线性布局或尝试使用android:layout_below
进行相对布局。但每次我做这些事情时,FrameView
中NavigationDrawer
的{{1}}中的碎片不再有效。
我的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"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/appbar"
layout="@layout/app_bar_main_map"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/activity_main_map_drawer" />
</android.support.v4.widget.DrawerLayout>
如果您需要更多代码,我会尽快发布。
非常感谢每一位帮助。
答案 0 :(得分:0)
`android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"`
从内容布局中删除上述代码。