可能将ScrollingViewBehavior与Snackbar行为结合使用?

时间:2016-02-15 00:34:51

标签: android android-toolbar android-coordinatorlayout

我有ToolbarDrawerLayoutFrameLayoutActivity作为我的基本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

当我运行此选项时,FrameLayoutFrameLayout的内容重叠,并且位于其上方,当我希望它像LinearLayout一样位于其下方时。

如何对其进行调整以使Toolbar的内容位于app:layout_behavior="@string/appbar_scrolling_view_behavior"下方并且不会与其重叠?

更新1:
我使用FrameLayout作为Toolbar的行为进行了测试,它为我提供了Snackbar的预期行为,但随后它删除了ScrollingViewBehavior推送行为。如何将两种行为结合在一起?

我尝试过扩展{{1}}并将这两种行为结合起来,但是当Snackbar显示时,它仍然会在工具栏下推动布局。如果我解雇Snackbar,一切都很好。

0 个答案:

没有答案