Android模仿实现微博详情页滑动固定顶部栏的效果实例
前言
最近项目中遇到一个需求,类似微博详情页的效果,通过查找相关的资料终于找了对应的解决方案,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
先来看下我们今天要实现的效果:
滑动固定顶部栏效果图
这段时间公司准备重构一个项目,刚好用到这个效果,我就顺带写了篇文章,关于这个效果网上可以找到一些相关资料的,昨晚看了一些,感觉都不是很好,有点模棱两可的样子,也没提到需要注意的一些关键点,这里来做下整理,由于涉及到公司的代码,这里我就写个简单的demo来讲解。
简单demo
传统套路:
写两个一模一样的固定栏,外层用帧布局(framelayout)包裹,然后把外层的固定栏先隐藏,当内层的固定栏滑动到外层固定栏位置的时候,把内层固定栏隐藏,外层的固定栏显示,反之滑回来的时候把外层固定栏隐藏,内存固定栏显示。
传统套路图
这样做的有几个不好的地方:
1、重复写了一样的布局,在xml渲染的时候耗费了性能(比如更多次的测量,布局等)
2、当页面快速滚动的时候可能出现一系列的问题(布局重复,闪烁)
3、当这个固定布局带有状态的时候,逻辑会变得很复杂,比如上面那张gif动图,固定栏中带有筛选分类,地区,年月信息,如果按照传统套路来写,那么在内层固定栏隐藏的时候需要把状态记录并且带给外层固定栏,而且相对应很多动作监听事件也需要写多次。
新套路:
这里我换了一种思路,大体布局还是不变的,只是把两个固定栏简化成了一个,只是利用removeview和addview根据坐标点在页面滑动的时候动态的把固定栏在内外部切换,这样做的好处很好的解决了上面提到的1、2点问题,当然在快速的removeview和addview还是会出现页面闪烁不自然的问题,后面会提到解决的小窍门。
先来看下xml布局:
<?xml version="1.0" encoding="utf-8"?> <framelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <com.lcw.view.fixedheaderscrollview.observablescrollview android:id="@+id/sv_contentview" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" > <linearlayout android:id="@+id/ll_contentview" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <textview android:id="@+id/tv_headerview" android:layout_width="match_parent" android:layout_height="200dp" android:text="我是头部布局" android:textsize="30sp" android:background="#ad29e1" android:gravity="center"/> <linearlayout android:id="@+id/ll_topview" android:layout_width="match_parent" android:layout_height="50dp" android:gravity="center" android:orientation="vertical"> <textview android:id="@+id/tv_topview" android:layout_width="match_parent" android:layout_height="50dp" android:text="我是内层固定的布局" android:background="#3be42f" android:textsize="30sp" android:gravity="center"/> </linearlayout> <textview android:id="@+id/tv_contentview" android:layout_width="match_parent" android:layout_height="1000dp" android:text="我是内容布局" android:textsize="30sp" android:background="#dc7f28" android:paddingtop="160dp" android:gravity="top|center_horizontal"/> </linearlayout> </com.lcw.view.fixedheaderscrollview.observablescrollview> <linearlayout android:id="@+id/ll_fixedview" android:layout_width="match_parent" android:layout_height="50dp" android:orientation="vertical"/> </framelayout>
这里和上面提到的一样,最外层用了framelayout(relativelayout也可以)包裹着一个scrollview和一个linearlayout,当我们页面滑动到指定点的时候,需要把内层的“我是内层固定布局”移除,同时添加到外层的viewgroup(linearlayout)中。
自定义scrollview,利用回调接口的方式使滑动数据对外暴露:
虽然谷歌官方给scrollview提供了一个设置滑动监听方法setonscrollchangelistener,不过这个方法需要基于api23之上(android6.0系统),在日常开发中,我们需要对老系统用户进行兼容(当前兼容版本为android4.1系统以上),所以这里我们需要去继承scrollview并把这个监听事件通过接口的方式对外暴露,这里把这个view取名为observablescrollview。
package com.lcw.view.fixedheaderscrollview; import android.content.context; import android.util.attributeset; import android.widget.scrollview; /** * 监听scrollview的滑动数据 * create by: chenwei.li * date: 2017/8/21 * time: 11:36 * email: lichenwei.me@foxmail.com */ public class observablescrollview extends scrollview{ public observablescrollview(context context) { this(context,null); } public observablescrollview(context context, attributeset attrs) { this(context, attrs,0); } public observablescrollview(context context, attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); } private onobservablescrollviewscrollchanged monobservablescrollviewscrollchanged; public void setonobservablescrollviewscrollchanged(onobservablescrollviewscrollchanged monobservablescrollviewscrollchanged) { this.monobservablescrollviewscrollchanged = monobservablescrollviewscrollchanged; } public interface onobservablescrollviewscrollchanged{ void onobservablescrollviewscrollchanged(int l, int t, int oldl, int oldt); } /** * @param l current horizontal scroll origin. 当前滑动的x轴距离 * @param t current vertical scroll origin. 当前滑动的y轴距离 * @param oldl previous horizontal scroll origin. 上一次滑动的x轴距离 * @param oldt previous vertical scroll origin. 上一次滑动的y轴距离 */ @override protected void onscrollchanged(int l, int t, int oldl, int oldt) { super.onscrollchanged(l, t, oldl, oldt); if(monobservablescrollviewscrollchanged!=null){ monobservablescrollviewscrollchanged.onobservablescrollviewscrollchanged(l,t,oldl,oldt); } } }
这里就可以开始写我们的调用类了
package com.lcw.view.fixedheaderscrollview; import android.os.bundle; import android.support.v7.app.appcompatactivity; import android.widget.linearlayout; import android.widget.textview; public class mainactivity extends appcompatactivity implements observablescrollview.onobservablescrollviewscrollchanged{ private observablescrollview sv_contentview; private linearlayout ll_topview; private textview tv_topview; private linearlayout ll_fixedview; //用来记录内层固定布局到屏幕顶部的距离 private int mheight; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); sv_contentview= (observablescrollview) findviewbyid(r.id.sv_contentview); ll_topview= (linearlayout) findviewbyid(r.id.ll_topview); tv_topview= (textview) findviewbyid(r.id.tv_topview); ll_fixedview= (linearlayout) findviewbyid(r.id.ll_fixedview); sv_contentview.setonobservablescrollviewscrollchanged(this); // viewtreeobserver viewtreeobserver=ll_topview.getviewtreeobserver(); // viewtreeobserver.addongloballayoutlistener(new viewtreeobserver.ongloballayoutlistener() { // @override // public void ongloballayout() { // ll_topview.getviewtreeobserver().removeongloballayoutlistener(this); // mheight=ll_topview.gettop(); // } // }); } @override public void onwindowfocuschanged(boolean hasfocus) { super.onwindowfocuschanged(hasfocus); if(hasfocus){ //获取headerview的高度,当滑动大于等于这个高度的时候,需要把topview移除当前布局,放入到外层布局 mheight=ll_topview.gettop(); } } /** * @param l current horizontal scroll origin. 当前滑动的x轴距离 * @param t current vertical scroll origin. 当前滑动的y轴距离 * @param oldl previous horizontal scroll origin. 上一次滑动的x轴距离 * @param oldt previous vertical scroll origin. 上一次滑动的y轴距离 */ @override public void onobservablescrollviewscrollchanged(int l, int t, int oldl, int oldt) { if(t>=mheight){ if(tv_topview.getparent()!=ll_fixedview){ ll_topview.removeview(tv_topview); ll_fixedview.addview(tv_topview); } }else{ if(tv_topview.getparent()!=ll_topview){ ll_fixedview.removeview(tv_topview); ll_topview.addview(tv_topview); } } } }
这里我们实现了observablescrollview.onobservablescrollviewscrollchanged接口,当我们对scrollview注册监听的时候,就可以在回调接口里拿到对应的滑动数据,其中第二个参数t就是滑动y轴的距离,现在我们只需要拿到固定布局到顶部的距离就可以判断什么时候需要移除和添加view了。
相关讲解:
1、首先我们需要知道,在activity生命周期里的oncreate方法里对一个view去执行getwidth,getheight,gettop,getbottom等一系列的方法是拿不到数据的,得到的结果都为0,由于此时activity还没有得到焦点,依附在activity的view自然也就得不到数据,所以我们需要在onresume后去进行对view的数据获取。
这里我们可以通过ongloballayoutlistener或者onwidnowfocuschanged等方法去获取,这里的执行顺序是:activity.oncreate->activity.onresume->view.onmeasure->view.onlayout->ongloballayoutlistener->activity.onwidnowfocuschanged..(具体用哪个,看当前环境情况,比如在fragment里是没有onwidnowfocuschanged,如果需要获取一个view的相关数据,就可以根据ongloballayoutlistener来做,上面代码提供两种示例)
2、关于获取滑动的高度,首先我们来看一张图:
andorid里关于view的坐标系
这里需要注意的是,除了getrawx和getrawy是相对屏幕的位置,其他的是相对应所在父布局的位置,所以在确定数据的时候,需要注意布局的嵌套。
3、当我们拿到所需要滑动的高度时,我们需要对固定布局进行临界值做判断(这里设当前滑动值为t,所需滑动值为y)
比如当我们界面一开始向上滑的时候t值是小于y值的,此时内部固定栏是不需要移除的,而当我们超过y值往回滑t值又小于y值的时候,此时内部固定栏是需要从外部移除添加到内部的,所以这里我们需要对固定栏所在的父布局(viewgroup)做判断。
最后补充:
微博详情页
1、不管你的顶部固定栏布局多简单,建议在外套一层viewgroup,这样方便addview的操作,不然需要去控制外层viewgroup的addview的index位置。
2、确定view的宽高度数据可以借助ongloballayoutlistener或者onwidnowfocuschanged来做,注意相对父布局的嵌套。
3、这种页面的设计最早来源于ios的设计,在ios里scrollview嵌套tableview(相当于listview)是没有问题的,但是在android里,这样子的嵌套会导致listview的复用机制作废,也就是会不断是去进行onmeasure的计算,执行多次adapter里的getview,也就意味着多次的findviewbyid,使得viewholder失效。
4、这是个小技巧,在快速滑动的时候有些人会出现固定布局的闪烁,其实这个和removeview和addview有关系,如果你的viewgroup设置成了warp_content,这是一个测量的耗时操作,这里只需要配合上面提到的第1点,给固定栏外层布局一个固定的高度值即可(与固定栏高度保持一致)。
好了,到这里就结束。
源码下载:
github源码地址:源码下载
本地下载:点击这里
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
上一篇: C#实现从网络同步标准北京时间的方法