工具栏ScrollFlags

时间:2016-09-23 03:22:46

标签: android android-studio android-toolbar

我的这个工具栏上有PagerTabStrip 我在PagerTabStrip里面也有一个RecyclerView 当我滚动我的RecyclerView时,我的工具栏将隐藏,剩下的是PagerTabStrip 您可以参考Youtube应用程序 我的问题是,当我的工具栏被隐藏一半时,它会隐藏一半 与Youtube App不同,如果隐藏了一半以上,它会自动隐藏它 我希望你能好好理解这些人 这是我的代码,我是否需要更改某些内容以生成类似于YOutube App的内容?

 <android.support.design.widget.CoordinatorLayout
android:id="@+id/content_nav"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.application.toweelo.activity.Nav"
tools:showIn="@layout/activity_nav">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true"
    android:theme="@style/AppTheme.AppBarOverlay"
    app:elevation="0dp">


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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_vertical"
            >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="horizontal">

                <LinearLayout
                    android:id="@+id/btnSelectLocation"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:background="@drawable/ripple_effect"
                    android:clickable="true"
                    android:gravity="center_horizontal"
                    android:orientation="vertical"
                    android:paddingLeft="8dp"
                    android:paddingRight="8dp">

                    <com.application.toweelo.custom.CustomTextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginRight="8dp"
                        android:layout_marginTop="8dp"
                        android:gravity="center_vertical"
                        android:text="My Location"
                        android:textColor="#54FFFFFF"
                        android:textSize="@dimen/sub_title"/>

                    <LinearLayout
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:orientation="horizontal">

                        <com.application.toweelo.custom.CustomTextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:gravity="center_vertical"
                            android:text="Quezon City"
                            android:textColor="@color/colorWhite"
                            android:textSize="@dimen/title"/>

                        <ImageView
                            android:layout_width="24dp"
                            android:layout_height="24dp"
                            android:src="@drawable/ic_searchplace_downarrow"/>
                    </LinearLayout>
                </LinearLayout>


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

    <com.astuetz.PagerSlidingTabStrip
        android:id="@+id/tab"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:background="@color/colorPrimary"
        app:pstsDividerColor="@color/colorPrimary"
        app:pstsIndicatorColor="@color/colorWhite"
        app:pstsIndicatorHeight="3dp"
        app:pstsShouldExpand="true"
        app:pstsTextAllCaps="false"/>
</android.support.design.widget.AppBarLayout>
    </android.support.design.widget.CoordinatorLayout>

1 个答案:

答案 0 :(得分:0)

您正在谈论的行为是通过快照标志实现的。

管理单元

向上和向下滚动根据视图的显示位置快速向上或向下滚动 - 如果超过50% - 视图将向下滚动,显示自身,如果更少 - 视图将隐藏;与其他标志一起使用作为进一步的自定义

Heroku buildpack for building ASP.NET 5上了解详情。