先上展示图
ui效果丑了点但是实现了只要的效果功能,CoordinatorLayout+ AppBarLayout实现吸顶停留功能
加入详细的代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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">
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
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:background="#ffffff"
android:fitsSystemWindows="true">
<android.support.constraint.ConstraintLayout
app:layout_scrollFlags="scroll"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_150">
<com.youth.banner.Banner
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginRight="@dimen/dp_20"
android:layout_marginLeft="@dimen/dp_20"
android:id="@+id/imageview_shopping"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_150"
/>
</android.support.constraint.ConstraintLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tablayout"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_50"
app:tabIndicatorColor="#ffffff"
app:tabSelectedTextColor="#e40707"
app:tabTextColor="#0209ce">
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/recyc_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v4.view.ViewPager>
</android.support.design.widget.CoordinatorLayout>
</android.support.constraint.ConstraintLayout>
其中要注意的是viewpager中的设置
app:layout_behavior="@string/appbar_scrolling_view_behavior"
和banner所在的布局的设置
app:layout_scrollFlags="scroll"
这两个设置是为关键的,刚开始viewpager中的recyclerview向下滑动会和顶部的滑动产生冲突,我还在想着用事件分发处理,但是偶然间发现犯了一个错误.banner的app:layout_scrollFlags属性之前写的是app:layout_scrollFlags="scroll|enterAlways"
将enterAlways删掉就可以了
以下学习自https://www.jianshu.com/p/7caa5f4f49bd
详细说一下layout_scrollFlags中 scroll 和 scroll|enterAlways的区别
scroll:
Child View 伴随着滚动事件而滚出或滚进屏幕。注意两点:第一点,如果使用了其他值,必定要使用这个值才能起作用;第二点:如果在这个child View前面的任何其他Child View没有设置这个值,那么这个Child View的设置将失去作用。
scroll|enterAlways:
快速返回模式。其实就是向下滚动时Scrolling View和Child View之间的滚动优先级问题。对比scroll和scroll | enterAlways设置,发生向下滚动事件时,前者优先滚动Scrolling View,后者优先滚动Child View,当优先滚动的一方已经全部滚进屏幕之后,另一方才开始滚动。