问题很简单:如何在coordinatorLayout中设置(任意)布局下方的导航栏?
如果我在RelativeLayout中使用frameLayout,则整个屏幕的RelativeLayout高度填充包含navigationBar。
这是我的代码:
<RelativeLayout
android:id="@+id/drawer_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="false"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/primary"
app:layout_scrollFlags="scroll|enterAlways"
android:minHeight="?android:attr/actionBarSize"
app:popupTheme="@style/MaterialDrawerTheme.Light.DarkToolbar"
app:theme="@style/ToolbarTheme">
<TextView
android:id="@+id/toolbar_title"
style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:gravity="center"
android:textColor="@color/icons" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
问题(在我添加了一个片段之后的frameLayout): image 1
Android Studio预览屏幕: image 2
(对不起图片,目前我还没有足够的信息直接发布在这里:()
答案 0 :(得分:0)
将android:fitsSystemWindows
更改为false
:
android:fitsSystemWindows="false"