我有一个具有折叠操作栏效果的页面,类似于:http://xmodulo.com/hide-show-toolbar-scrolling-android.html。但我希望操作栏仅在列表已显示第一个项目时显示,而不是在我向下滚动时立即显示。我怎样才能做到这一点?
答案 0 :(得分:3)
设计库有一个名为AppBarLayout
的组件来完成此任务。
包括图书馆:
dependencies {
compile 'com.android.support:design:22.2.0'
}
将Toolbar
换入AppBarLayout
并将scrollFlags设置为'滚动',将整个布局包装在CoordinatorLayout
中,然后添加设置您的layout_behavior将视图滚动到@string/appbar_scrolling_view_behavior
。
<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/main_content"
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.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"/>
<!-- If you have tabs you can include them below the 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>
<!-- If you use a ViewPager, just add the layout_behavior to it instead of the RecyclerView -->
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>