Android:如何在列表滚动到顶部时显示工具栏?

时间:2017-05-16 19:18:10

标签: android android-recyclerview toolbar

我有工具栏的问题,当我向上滚动,工具栏隐藏,当我向下滚动时,工具栏立即显示。我想滚动到RecyclerView的顶部,工具栏会显示,我该怎么办?

感谢!!!!

nopython

2 个答案:

答案 0 :(得分:0)

使用以下格式代码,这将对您有所帮助。

<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/activity_notice"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
      android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:fitsSystemWindows="true"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar" />
</android.support.design.widget.AppBarLayout>

<FrameLayout
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
     android:orientation="vertical">

    <android.support.v7.widget.RecyclerView
          android:id="@+id/recycler"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipToPadding="false"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</FrameLayout>

 Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar_help);
    setSupportActionBar(toolbar);

答案 1 :(得分:0)

您应该在app:layout_scrollFlags="scroll|enterAlways"的孩子(<android.support.v7.widget.Toolbar>}中添加<android.support.design.widget.AppBarLayout>来实现向下滚动隐藏应用栏和滚动顶部的应用栏。