模仿美团点评的Android应用中价格和购买栏悬浮固定的效果
随着移动互联网的快速发展,它已经和我们的生活息息相关了,在公交地铁里面都能看到很多人的人低头看着自己的手机屏幕,从此“低头族”一词就产生了,作为一名移动行业的开发人员,我自己也是一名“低头族”,上下班时间在公交地铁上看看新闻来打发下时间,有时候也会看看那些受欢迎的app的一些界面效果,为什么人家的app那么受欢迎?跟用户体验跟ui设计也有直接的关系,最近在美团和大众点评的app看到如下效果,我感觉用户好,很人性化,所以自己也尝试着实现了下,接下来就讲解下实现思路!
如上图(2)我们看到了,当立即抢购布局向上滑动到导航栏布局的时候,立即抢购布局就贴在导航栏布局下面,下面的其他的布局还是可以滑动,当我们向下滑动的时候,立即抢购的布局又随着往下滑动了,看似有点复杂,但是一说思路可能你就顿时恍然大悟了。
当我们向上滑动过程中,我们判断立即抢购的布局是否滑到导航栏布局下面,如果立即抢购的上面顶到了导航栏,我们新建一个立即抢购的悬浮框来显示在导航栏下面,这样子就实现了立即抢购贴在导航栏下面的效果啦,而当我们向下滑动的时候,当立即抢购布局的下面刚好到了刚刚新建的立即抢购悬浮框的下面的时候,我们就移除立即抢购悬浮框,可能说的有点拗口,既然知道了思路,接下来我们就来实现效果。
新建一个android项目,取名meituandemo,先看立即抢购(buy_layout.xml)的布局,这里为了方便我直接从美团上面截去了图片
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" > <imageview android:id="@+id/buy_layout" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/buy" /> </linearlayout>
立即抢购的布局实现了,接下来实现主界面的布局,上面是导航栏布局,为了方便还是直接从美团截取的图片,然后下面的viewpager布局,立即抢购布局,其他布局 放在scrollview里面,界面还是很简单的
<linearlayout 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" android:orientation="vertical" > <imageview android:id="@+id/imageview1" android:scaletype="centercrop" android:layout_width="match_parent" android:layout_height="45dip" android:src="@drawable/navigation_bar" /> <com.example.meituandemo.myscrollview android:id="@+id/scrollview" android:layout_width="fill_parent" android:layout_height="fill_parent" > <linearlayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <imageview android:id="@+id/iamge" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/pic" android:scaletype="centercrop" /> <include android:id="@+id/buy" layout="@layout/buy_layout" /> <imageview android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/one" android:scaletype="centercrop" /> <imageview android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/one" android:scaletype="centercrop" /> <imageview android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/one" android:scaletype="centercrop" /> </linearlayout> </com.example.meituandemo.myscrollview> </linearlayout>
你会发现上面的主界面布局中并不是scrollview,而是自定义的一个myscrollview,接下来就看看myscrollview类中的代码
package com.example.meituandemo; import android.content.context; import android.os.handler; import android.util.attributeset; import android.view.motionevent; import android.widget.scrollview; /** * 博客地址:http://blog.csdn.net/xiaanming * * @author xiaanming * */ public class myscrollview extends scrollview { private onscrolllistener onscrolllistener; /** * 主要是用在用户手指离开myscrollview,myscrollview还在继续滑动,我们用来保存y的距离,然后做比较 */ private int lastscrolly; public myscrollview(context context) { this(context, null); } public myscrollview(context context, attributeset attrs) { this(context, attrs, 0); } public myscrollview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); } /** * 设置滚动接口 * @param onscrolllistener */ public void setonscrolllistener(onscrolllistener onscrolllistener) { this.onscrolllistener = onscrolllistener; } /** * 用于用户手指离开myscrollview的时候获取myscrollview滚动的y距离,然后回调给onscroll方法中 */ private handler handler = new handler() { public void handlemessage(android.os.message msg) { int scrolly = myscrollview.this.getscrolly(); //此时的距离和记录下的距离不相等,在隔5毫秒给handler发送消息 if(lastscrolly != scrolly){ lastscrolly = scrolly; handler.sendmessagedelayed(handler.obtainmessage(), 5); } if(onscrolllistener != null){ onscrolllistener.onscroll(scrolly); } }; }; /** * 重写ontouchevent, 当用户的手在myscrollview上面的时候, * 直接将myscrollview滑动的y方向距离回调给onscroll方法中,当用户抬起手的时候, * myscrollview可能还在滑动,所以当用户抬起手我们隔5毫秒给handler发送消息,在handler处理 * myscrollview滑动的距离 */ @override public boolean ontouchevent(motionevent ev) { if(onscrolllistener != null){ onscrolllistener.onscroll(lastscrolly = this.getscrolly()); } switch(ev.getaction()){ case motionevent.action_up: handler.sendmessagedelayed(handler.obtainmessage(), 5); break; } return super.ontouchevent(ev); } /** * * 滚动的回调接口 * * @author xiaanming * */ public interface onscrolllistener{ /** * 回调方法, 返回myscrollview滑动的y方向距离 * @param scrolly * 、 */ public void onscroll(int scrolly); } }
一看代码你也许明白了,就是对scrollview的滚动y值进行监听,我们知道scrollview并没有实现滚动监听,所以我们必须自行实现对scrollview的监听,我们很自然的想到在ontouchevent()方法中实现对滚动y轴进行监听,可是你会发现,我们在滑动scrollview的时候,当我们手指离开scrollview。它可能还会继续滑动一段距离,所以我们选择在用户手指离开的时候每隔5毫秒来判断scrollview是否停止滑动,并将scrollview的滚动y值回调给onscrolllistener接口的onscroll(int scrolly)方法中,我们只需要对scrollview调用我们只需要对scrollview调用setonscrolllistener方法就能监听到滚动的y值。
实现了对scrollview滚动的y值进行监听,接下来就简单了,我们只需要显示立即抢购悬浮框和移除悬浮框了,接下来看看主界面activity的代码编写
package com.example.meituandemo; import android.app.activity; import android.content.context; import android.graphics.pixelformat; import android.os.bundle; import android.view.gravity; import android.view.layoutinflater; import android.view.view; import android.view.windowmanager; import android.view.windowmanager.layoutparams; import android.widget.linearlayout; import com.example.meituandemo.myscrollview.onscrolllistener; /** * 博客地址:http://blog.csdn.net/xiaanming * * @author xiaanming * */ public class mainactivity extends activity implements onscrolllistener{ private myscrollview myscrollview; private linearlayout mbuylayout; private windowmanager mwindowmanager; /** * 手机屏幕宽度 */ private int screenwidth; /** * 悬浮框view */ private static view suspendview; /** * 悬浮框的参数 */ private static windowmanager.layoutparams suspendlayoutparams; /** * 购买布局的高度 */ private int buylayoutheight; /** * myscrollview与其父类布局的顶部距离 */ private int myscrollviewtop; /** * 购买布局与其父类布局的顶部距离 */ private int buylayouttop; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); myscrollview = (myscrollview) findviewbyid(r.id.scrollview); mbuylayout = (linearlayout) findviewbyid(r.id.buy); myscrollview.setonscrolllistener(this); mwindowmanager = (windowmanager) getsystemservice(context.window_service); screenwidth = mwindowmanager.getdefaultdisplay().getwidth(); } /** * 窗口有焦点的时候,即所有的布局绘制完毕的时候,我们来获取购买布局的高度和myscrollview距离父类布局的顶部位置 */ @override public void onwindowfocuschanged(boolean hasfocus) { super.onwindowfocuschanged(hasfocus); if(hasfocus){ buylayoutheight = mbuylayout.getheight(); buylayouttop = mbuylayout.gettop(); myscrollviewtop = myscrollview.gettop(); } } /** * 滚动的回调方法,当滚动的y距离大于或者等于 购买布局距离父类布局顶部的位置,就显示购买的悬浮框 * 当滚动的y的距离小于 购买布局距离父类布局顶部的位置加上购买布局的高度就移除购买的悬浮框 * */ @override public void onscroll(int scrolly) { if(scrolly >= buylayouttop){ if(suspendview == null){ showsuspend(); } }else if(scrolly <= buylayouttop + buylayoutheight){ if(suspendview != null){ removesuspend(); } } } /** * 显示购买的悬浮框 */ private void showsuspend(){ if(suspendview == null){ suspendview = layoutinflater.from(this).inflate(r.layout.buy_layout, null); if(suspendlayoutparams == null){ suspendlayoutparams = new layoutparams(); suspendlayoutparams.type = layoutparams.type_phone; //悬浮窗的类型,一般设为2002,表示在所有应用程序之上,但在状态栏之下 suspendlayoutparams.format = pixelformat.rgba_8888; suspendlayoutparams.flags = layoutparams.flag_not_touch_modal | layoutparams.flag_not_focusable; //悬浮窗的行为,比如说不可聚焦,非模态对话框等等 suspendlayoutparams.gravity = gravity.top; //悬浮窗的对齐方式 suspendlayoutparams.width = screenwidth; suspendlayoutparams.height = buylayoutheight; suspendlayoutparams.x = 0; //悬浮窗x的位置 suspendlayoutparams.y = myscrollviewtop; ////悬浮窗y的位置 } } mwindowmanager.addview(suspendview, suspendlayoutparams); } /** * 移除购买的悬浮框 */ private void removesuspend(){ if(suspendview != null){ mwindowmanager.removeview(suspendview); suspendview = null; } } }
上面的代码比较简单,根据scrollview滑动的距离来判断显示和移除悬浮框,悬浮框的实现主要是通过windowmanager这个类来实现的,调用这个类的addview方法用于添加一个悬浮框,removeview用于移除悬浮框。
通过上述代码就实现了美团,大众点评的这种效果,在运行项目之前我们必须在androidmanifest.xml中加入<uses-permission android:name="android.permission.system_alert_window" />
我们运行下项目看下效果吧
一个修改版
上面的代码,其实我自己感觉效果并不是很好,如果快速滑动界面,显示悬浮框的时候会出现一卡的现象,有些朋友说有时候会出现两个布局的情况,特别是对scrollview滚动的y值得监听,我还使用了handler来获取,还有朋友给我介绍了scrolling tricks这个东西,我下载试了下,确实美团网,大众点评的购买框用的是这种效果,但是scrolling tricks只能在api11以上使用,这个有点小悲剧,然后我做了下修改,并将实现思路分享给大家,实现起来很简单
首先还是要先对scrollview进行滚动监听,直接在onscrollchanged()方法中就能获取滚动的y值,之前那里使用了handler,走弯路了,直接看代码吧
package com.example.meituandemo; import android.content.context; import android.util.attributeset; import android.widget.scrollview; public class myscrollview extends scrollview { private onscrolllistener onscrolllistener; public myscrollview(context context) { this(context, null); } public myscrollview(context context, attributeset attrs) { this(context, attrs, 0); } public myscrollview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); } /** * 设置滚动接口 * @param onscrolllistener */ public void setonscrolllistener(onscrolllistener onscrolllistener) { this.onscrolllistener = onscrolllistener; } @override public int computeverticalscrollrange() { return super.computeverticalscrollrange(); } @override protected void onscrollchanged(int l, int t, int oldl, int oldt) { super.onscrollchanged(l, t, oldl, oldt); if(onscrolllistener != null){ onscrolllistener.onscroll(t); } } /** * * 滚动的回调接口 */ public interface onscrolllistener{ /** * 回调方法, 返回myscrollview滑动的y方向距离 * @param scrolly * 、 */ public void onscroll(int scrolly); } }
接下来看看主界面的布局文件
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/parent_layout" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <imageview android:id="@+id/imageview1" android:layout_width="match_parent" android:layout_height="45dip" android:scaletype="centercrop" android:src="@drawable/navigation_bar" /> <com.example.meituandemo.myscrollview android:id="@+id/scrollview" android:layout_width="fill_parent" android:layout_height="fill_parent" > <framelayout android:layout_width="match_parent" android:layout_height="wrap_content" > <linearlayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <imageview android:id="@+id/iamge" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/pic" android:scaletype="centercrop" /> <include android:id="@+id/buy" layout="@layout/buy_layout" /> <imageview android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/one" android:scaletype="centercrop" /> <imageview android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/one" android:scaletype="centercrop" /> <imageview android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/one" android:scaletype="centercrop" /> </linearlayout> <include android:id="@+id/top_buy_layout" layout="@layout/buy_layout" /> </framelayout> </com.example.meituandemo.myscrollview> </linearlayout>
下面是布局的效果图
从主界面的布局你可以看出,我们在上面放置了一个购买的布局,可能你会想,先让上面的布局隐藏起来,等下面的布局滑动上来就将其显示出来,如果这样子就跟我之前写的那篇文章差不多,效果不是很棒,所以这篇修改版的肯定不是这样子的,我们还是先看主界面的代码吧
package com.example.meituandemo; import android.app.activity; import android.os.bundle; import android.view.viewtreeobserver.ongloballayoutlistener; import android.widget.linearlayout; import com.example.meituandemo.myscrollview.onscrolllistener; public class mainactivity extends activity implements onscrolllistener{ /** * 自定义的myscrollview */ private myscrollview myscrollview; /** * 在myscrollview里面的购买布局 */ private linearlayout mbuylayout; /** * 位于顶部的购买布局 */ private linearlayout mtopbuylayout; @suppresswarnings("deprecation") @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); myscrollview = (myscrollview) findviewbyid(r.id.scrollview); mbuylayout = (linearlayout) findviewbyid(r.id.buy); mtopbuylayout = (linearlayout) findviewbyid(r.id.top_buy_layout); myscrollview.setonscrolllistener(this); //当布局的状态或者控件的可见性发生改变回调的接口 findviewbyid(r.id.parent_layout).getviewtreeobserver().addongloballayoutlistener(new ongloballayoutlistener() { @override public void ongloballayout() { //这一步很重要,使得上面的购买布局和下面的购买布局重合 onscroll(myscrollview.getscrolly()); } }); } @override public void onscroll(int scrolly) { int mbuylayout2parenttop = math.max(scrolly, mbuylayout.gettop()); mtopbuylayout.layout(0, mbuylayout2parenttop, mtopbuylayout.getwidth(), mbuylayout2parenttop + mtopbuylayout.getheight()); } }
主界面就短短的几行代码,可能看完这些代码你还是没有明白到底是怎么做到的,没关系,我给大家说说,其实我们是让上面的购买布局和下面的购买布局重合起来了,layout()这个方法是确定view的大小和位置的,然后将其绘制出来,里面的四个参数分别是view的四个点的坐标,他的坐标不是相对屏幕的原点,而且相对于他的父布局来说的,
我们在主页面最外层的viewgroup添加了布局状态改变的监听器,当绘制完了屏幕会回调到方法ongloballayout()中,我们在ongloballayout()方法中手动调用了下onscroll()方法,刚开始myscrollview.getscrolly()等于0,所以说当scrolly小于mbuylayout.gettop()的时候,上面的购买布局的上边缘到myscrollview的上边缘的距离等于mbuylayout.gettop()(即下面布局的上边缘到myscrollview的上边缘)所以刚开始上面的购买布局和下面的购买布局重合了。
当myscrollview向上滚动,而上面购买布局的上边缘始终要和myscrollview的上边缘保持mbuylayout.gettop()这个距离,所以上面的购买布局也跟着向上滚动,当scrolly大于mbuylayout.gettop()的时候,表示购买布局上边缘滑动到了导航栏布局,所以此时购买布局的上边缘与myscrollview的上边缘始终要保持scrolly这个距离,所以购买布局才会一直在导航栏下面,就好像粘住了一样,不知道你了解了没有?好了,不过根据这种思路你也可以刚开始使用一个悬浮框来覆盖在下面的购买布局上面,然后onscroll()方法中更新悬浮框的位置,不过悬浮框的x,y不是相对于父布局的,这点要注意下,这样子也能实现效果,不过相对于此,要复杂的多,所以我们遇到类似的功能直接使用这种就行了,简洁明了,好了,你是不迫不及待的想看下效果,那我们接下来就运行下程序吧
含有多个购买布局的效果,下一个购买布局会将上一个购买布局顶上去,使用方法也很简单,只需要将你需要设置的布局设置tag为sticky, 如
<framelayout android:layout_width="fill_parent" android:layout_height="100dip" android:background="#ff00ffff" android:tag="sticky" > <button android:id="@+id/button" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="button" /> </framelayout>
这样子这个布局滚动到了顶部就会粘在顶部,大家可以试试!