在视图滚动上隐藏工具栏

时间:2016-02-17 20:24:49

标签: android android-toolbar android-coordinatorlayout

我在里面使用FragmentRecyclerView。 我想滚动RecyclerView时隐藏Fragment的工具栏。它是按设计工作的,但Toolbar并未完全隐藏。 如何解决这个问题?

开始滚动点

enter image description here

最终滚动点

enter image description here

以下是MainActivity.xml

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.avalank.financy.Main2ActivityTest">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/appbar_padding_top"
        android:theme="@style/AppTheme.AppBarOverlay">

        <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"
            app:popupTheme="@style/AppTheme.PopupOverlay">

        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

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

    <android.support.v4.view.ViewPager
        android:id="@+id/container"
        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/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

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

2 个答案:

答案 0 :(得分:0)

您可以使用 CollapsingToolbar 来实现此类功能。你可以找到good tutorial here.

答案 1 :(得分:0)

你是对的,我已经尝试过了,并且在Styles.xml下没有代码的情况下有效:

<item name="android:windowTranslucentStatus">true</item>

最后,请使用两种方法/技巧检查此答案:https://stackoverflow.com/a/35241363/4409113

此外,您可以将CollapsingToolbarLayout与以下标志一起使用:

app:layout_scrollFlags="scroll|snap"

另外,我要提一下我删除了这一行:

android:paddingTop="@dimen/appbar_padding_top"