当用户滚动列表时,我使用NestedScrollview
和CoordinatorLayout
来隐藏工具栏,并且它可以工作,但问题是当列表很短并且不会滚动时。当列表很短且不可滚动时,我不希望工具栏被隐藏。有什么建议吗?
有关代码的示例,您可以阅读本教程:
How to hideshow Toolbar when list is scrolling(part3)
<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">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
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"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabTextColor="@android:color/white"
app:tabSelectedTextColor="@android:color/white"
app:tabIndicatorColor="@android:color/white"
app:tabIndicatorHeight="6dp"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
正如您所看到的,tab1
有一个很长的列表,可以滚动,但tab2
有一个短列表,无法滚动。但是,当用户在tab2
上向上滑动时,工具栏将被隐藏。
我该如何阻止它?