我有Toolbar
,DrawerLayout
,FrameLayout
和Activity
作为我的基本Toolbar
布局,但我遇到了与Fragments
重叠的问题{1}}。我在FrameLayout
中插入了不同的<?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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:theme="@style/ToolbarOverlay"
android:popupTheme="@style/ToolbarOverlay"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:minHeight="?attr/actionBarSize"
android:elevation="10dp"/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.walintukai.lovelupdating.widgets.SnackbarBehavior"/>
</android.support.design.widget.CoordinatorLayout>
<ListView
android:id="@+id/navigation_drawer"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="#80858585"
android:dividerHeight="1dp"
android:listSelector="@android:color/transparent"
android:background="#bf333333"/>
</android.support.v4.widget.DrawerLayout>
。
活动布局
Toolbar
当我运行此选项时,FrameLayout
与FrameLayout
的内容重叠,并且位于其上方,当我希望它像LinearLayout一样位于其下方时。
如何对其进行调整以使Toolbar
的内容位于app:layout_behavior="@string/appbar_scrolling_view_behavior"
下方并且不会与其重叠?
更新1:
我使用FrameLayout
作为Toolbar
的行为进行了测试,它为我提供了Snackbar
的预期行为,但随后它删除了ScrollingViewBehavior
推送行为。如何将两种行为结合在一起?
我尝试过扩展{{1}}并将这两种行为结合起来,但是当Snackbar显示时,它仍然会在工具栏下推动布局。如果我解雇Snackbar,一切都很好。