在滚动选项卡内容上隐藏工具栏

时间:2016-06-12 23:14:35

标签: android tabs toolbar

我有五个标签和一个工具栏的实现。我已经使用片段作为标签。一切正常,除了我想在每个标签向下滚动时隐藏我的工具栏并显示它向上滚动的标签。这是我的布局图。An illustration of the image 我想帮助实现这种行为。我试图按照this教程,但我的工具栏仍在滚动显示。 这是我的活动布局代码。

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

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/ollamoments_background"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true">

    <android.support.v7.widget.Toolbar
        android:id="@+id/ollamoments_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        app:layout_scrollFlags="scroll|enterAlways"
        app:theme="@style/ThemeOverlay.AppCompat.ActionBar">

        <include layout="@layout/ollamoments_toolbar" />

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

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

    <android.support.v4.app.FragmentTabHost
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_below="@+id/appBarLayout"
        android:background="@color/ollamoments_background">

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical">

            <ProgressBar
                android:id="@+id/ollamoments_upload_progress"
                style="@android:style/Widget.ProgressBar.Horizontal"
                android:layout_width="match_parent"
                android:layout_height="5dp"
                android:layout_centerInParent="true"
                android:layout_marginBottom="10dp"
                android:layout_marginRight="5dp"
                android:layout_marginTop="10dp"
                android:indeterminate="true"
                android:max="100"
                android:visibility="gone" />

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <LinearLayout
                android:id="@+id/ollamoments_loading_footer"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                android:baselineAligned="true"
                android:gravity="center"
                android:minHeight="25dp"
                android:orientation="horizontal"
                android:padding="12dp"
                android:visibility="gone">

                <ProgressBar
                    style="?android:attr/progressBarStyle"
                    android:layout_width="42dp"
                    android:layout_height="42dp"
                    android:layout_centerInParent="true"
                    android:indeterminate="true"
                    android:indeterminateDrawable="@drawable/progress_background" />

            </LinearLayout>

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="50dp"
                android:background="@color/ollamoments_splitactionbar_background"
                android:showDividers="none" />

        </LinearLayout>

    </android.support.v4.app.FragmentTabHost>

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

请帮助我实现此行为。谢谢。

0 个答案:

没有答案