4

当您不向上滚动时,这是whatsapp。工具栏正在显示,它下面的选项卡布局也是如此。

屏幕截图1:

whatsapp1

一旦你向上滚动,这就是whatsapp。可以看到工具栏是隐藏的。

屏幕截图2:

whatspp2

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

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

来自指南的链接

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

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

<?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>

有谁知道当工具栏可见时我如何显示小吃栏?

编辑:

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

这是我的片段之一的 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>
4

3 回答 3

2

相当容易。只需使用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();
于 2015-12-30T17:56:54.500 回答
2

尝试将 ViewPager 的高度设置为wrap_content.

CoordinatorLayout 应该在不使用match_parent.

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

根据评论更新:

Snackbar将从您给它的视图开始沿着视图层次结构向上移动,并将其自身附加到它找到的第一个 CoordinatorLayout 或窗口装饰的内容视图(如果它没有找到)。

如果您将 CoordinatorLayouts 嵌套在 Fragment 中,则需要确保子 CoordinatorLayouts 不会溢出其容器,这可能会很棘手。

在我看来,删除片段中的 CoordinatorLayouts 可能更容易,Snackbar.make而是从你的片段中给出一个视图。它会很高兴地沿着层次结构(甚至在片段之外)到达您活动中的 CoordinatorLayout。

如果您这样做,回调将照常工作,但请确保标记您使用的任何回调static 以避免在您的片段应该消失后 Snackbar 留在屏幕上的情况下泄漏您的片段。

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

于 2015-12-30T17:48:51.350 回答
1

我设法通过遵循 Leo 的建议来解决这个问题,将我的活动的 coordinatorlayout 的引用传递到我的片段中,然后使用该 coordinatorlayout 在我的片段中显示我的快餐栏。

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

这是我的活动代码:

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

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

在我的片段中,我们得到了对活动 coordinatorlayout 的引用:

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

然后我们将snackbar设置为针对这个活动coordinatorlayout显示:

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

然而,要让代码正常工作,这还有很长的路要走。一种更快的方法实际上是使用 Nilesh 的代码和他的getView方法。

于 2015-12-30T18:58:39.897 回答