前些天看了很多app都有toolbar随滑动隐藏或显示,比如酷安。
效果挺棒的,想到了我之前的ListView Demo ,添加一个这样的toolbar会是什么效果呢? 【之前的Demo_ListView】
为了增加点东西,在listview的基础上嵌套一个PagerView在外部。
开始来添加toolbar,AppBar包裹的toolbar,这里用的包是androidx,如果你想用support,应使用android.support.v7.widget.Toolbar 和 android.support.design.widget.AppBarLayout ,
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="?attr/colorPrimary"
android:minHeight="40dp"
app:layout_scrollFlags="scroll|enterAlways"
app:maxButtonHeight="25dp"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
android:id="@+id/nscroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.viewpager.widget.ViewPager
android:id="@+id/activityViewPager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants" />
</androidx.core.widget.NestedScrollView>
<include layout="@layout/ite_tool_bar" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
NestedScrollView 设置
android:fillViewport="true"
NestedScrollView 设置了
app:layout_behavior="@string/appbar_scrolling_view_behavior"
toolbar就不会把ViewPager遮挡住。
修改好main_activity.xml之后效果是这样的:
listView.setNestedScrollingEnabled(true);
文章的博主也说了另外一种方法是弃用ListView改为RecyclerView
完成后效果:
AppBarLayout加个属性 app:elevation = “0dp” android:elevation 不行,因为他是兼容库的
在style.xml 中设置
在使用RecvclerView的快速滚动条时,发现他与NestedScrollView的滑动冲突,会阻断快速滑动条的滑动事件,在网上查找了解决办法,最终在文章【禁用NestedScrollview滚动】,找到,感谢作者。
Material Design系列教程(5) - NestedScrollView
Android CoordinatorLayout实战案例学习《一》
Android 详细分析AppBarLayout的五种ScrollFlags
Toolbar+TabLayout+ViewPager达成Android最优导航栏
android — Mar 11, 2020