Android:显示工具栏时显示小吃栏

Android: showing snackbar when toolbar is showing

当你没有向上滚动时,这是 whatsapp。显示工具栏及其下方的标签布局。

屏幕截图 1:

向上滚动后就是 whatsapp。可以看到工具栏被隐藏了

屏幕截图 2:

有一个指南可以向您展示如何创建这种效果。我已经遵循它并在我的应用程序中使用了这种效果。

https://mzgreen.github.io/2015/06/23/How-to-hideshow-Toolbar-when-list-is-scrolling(part3)/

我的问题是当工具栏显示为 SCREENSHOT1 时显示快餐栏。当我尝试在显示工具栏时显示快餐栏时,它实际上显示在屏幕下方,因此用户看不到它。只有当用户向上滚动并隐藏工具栏时,snackbar 才会可见。

我用于我的应用程序的 xml 与指南 https://github.com/mzgreen/HideOnScrollExample/blob/master/app/src/main/res/layout/activity_part_three.xml 中使用的相似。我已经按照下面的 link 复制并粘贴了代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                 xmlns:app="http://schemas.android.com/apk/res-auto"
                                                 android:id="@+id/coordinatorLayout"
                                                 android:layout_width="match_parent"
                                                 android:layout_height="match_parent">
    <android.support.design.widget.AppBarLayout
            android:id="@+id/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="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:layout_scrollFlags="scroll|enterAlways" />

        <android.support.design.widget.TabLayout
                android:id="@+id/tabLayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:tabTextColor="@android:color/white"
                app:tabSelectedTextColor="@android:color/white"
                app:tabIndicatorColor="@android:color/white"
                app:tabIndicatorHeight="6dp"/>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
            android:id="@+id/viewPager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <android.support.design.widget.FloatingActionButton
            android:id="@+id/fabButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="end|bottom"
            android:layout_margin="@dimen/fab_margin"
            android:src="@drawable/ic_favorite_outline_white_24dp"
            app:borderWidth="0dp"
            app:layout_behavior="pl.michalz.hideonscrollexample.ScrollingFABBehavior"/>

</android.support.design.widget.CoordinatorLayout>

有谁知道如何在工具栏可见时显示快餐栏?

编辑:

因为布局方案包含 tablayouts 并且每个 tablayouts 显示一个片段,我试图显示每个片段的小吃栏,而不是在 activity 级别。我实际上开始认为这可能无法显示每个片段的小吃店,这实际上可能需要通过将这 3 个片段中的每一个片段的侦听器绑定到主要 activity 然后小吃店必须只是改为显示在主 activity 中。

这是我的一个片段的xml:

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/snackbarPosition">

    <android.support.v4.widget.SwipeRefreshLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/swipeContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

            <android.support.v7.widget.RecyclerView
                android:id="@+id/my_recycler_view"
                android:layout_below="@+id/join"
                android:scrollbars="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
            </android.support.v7.widget.RecyclerView>

    </RelativeLayout>

    </android.support.v4.widget.SwipeRefreshLayout>

</android.support.design.widget.CoordinatorLayout>

尝试将 ViewPager 的高度设置为 wrap_content

CoordinatorLayout 应在不使用 match_parent 的情况下检查其尺寸。

此外,请确保将 CoordinatorLayout 的后代视图传递给 Snackbar.make

根据评论更新:

Snackbar will walk up the view hierarchy 从您给它的视图开始,并将自身附加到它找到的第一个 CoordinatorLayout 或 window 装饰的内容视图,如果它找到 none.

如果您在片段中嵌套 CoordinatorLayout,您需要确保子 CoordinatorLayout 不会溢出它们的容器,这可能很棘手。

在我看来,删除片段中的 CoordinatorLayouts 并从您的片段中提供 Snackbar.make 视图可能更容易。它会愉快地沿着层次结构向上走(甚至在片段之外)到达您的 activity.

中的 CoordinatorLayout

如果你这样做,回调将照常工作,但请确保将你使用的任何回调标记为 static to avoid leaking your fragments 以防 Snackbar 在你的片段应该停留在屏幕上走了。

之所以会发生这种情况,是因为 Snackbar 将保存对您的回调的引用,而回调又可以保存对您的片段的引用。如果您需要对片段或上下文的引用,请使用弱引用。

很简单。只需使用 viewPager 作为视图即可。它看起来像这样:

Snackbar snackbar = Snackbar.make(findViewById(R.id.viewPager), "Your Message", Snackbar.LENGTH_LONG);
    snackbar.getView().setBackgroundColor(Color.parseColor("#00b8ba"));
    snackbar.show();

确保将 findViewById(R.id.viewPager) 作为视图传递。

顺便说一下,viewPager 定义如下:

<android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

对于不同的片段使用这个(第一个片段):

Snackbar snackbar = Snackbar.make(getView(), "First", Snackbar.LENGTH_LONG);
        snackbar.getView().setBackgroundColor(Color.parseColor("#00b8ba"));
        snackbar.show();

第二个片段:

Snackbar snackbar = Snackbar.make(getView(), "Second", Snackbar.LENGTH_LONG);
        snackbar.getView().setBackgroundColor(Color.parseColor("#00b8ba"));
        snackbar.show();

我按照 Leo 的建议解决了这个问题,即将对 activity 的协调器布局的引用传递到我的片段中,然后使用该协调器布局在我的片段中显示我的小吃店。

这就是我在代码中所做的。

这是我的activity代码:

    coordinatorLayout = (CoordinatorLayout) findViewById(R.id.coordinatorlayout);
    TestFragment testFragment = new Fragment();

    //Needed for every fragment
    testFragment.setActivityCoordinatorLayout(coordinatorLayout); //passed the activity coordinatorlayout to my fragment.

在我的 片段 中,我们获得了对 activity 的协调器布局的引用:

public void setActivityCoordinatorLayout(CoordinatorLayout activityCoordinatorLayout) {
    this.activityCoordinatorLayout = activityCoordinatorLayout;
}

然后我们将小吃栏设置为根据此 activity 协调器布局显示:

            Snackbar.make(activityCoordinatorLayout, "No internet", Snackbar.LENGTH_LONG)
                    .setAction("Retry", new View.OnClickListener() {
                        @Override
                        public void onClick(View v) { <YOUR CODE>}}).show();

然而,要使代码正常工作,这是一个漫长的过程。一种更快的方法实际上是使用 Nilesh 的代码和他的 getView 方法。