安卓(android)仿电商app商品详情页按钮浮动效果
1、效果图如下:
这效果用户体验还是很酷炫,今天我们就来讲解如何实现这个效果。
2、分析
为了方便理解,作图分析
如图所示,整个页面分为四个部分:
1、悬浮内容,floatview
2、顶部内容,headview
3、中间内容,与悬浮内容相同,middleview
4、商品详情展示页面,detailview
因为页面内容高度会超出屏幕,所以用scrollview
实现滚动,悬浮view
与scrollview
同级,都在一个帧布局或者相对布局中。
当y方向的滚动距离小于中间的内容middleview
到顶部的距离时,middleview
理所当然的会随这页面向上滑动而消失,我们显示悬浮view
,从而实现middleview
一直卡在顶部的效果。
当y方向滚动距离大于中间的内容middleview
容到顶部的距离时,悬浮view
隐藏即可。
通过分析,我们发现只要知道scrollview
的滚动距离和middleview
到顶部的高度即可。至此将复杂的交互特效变成了俩个简单的api。
3、第一种方法实现
3.1 获取middleview的到父容器顶部的距离
tv_title.getviewtreeobserver().addongloballayoutlistener(new viewtreeobserver.ongloballayoutlistener() { @override public void ongloballayout() { mtitletopandheight = tv_title.gettop(); tv_title.getviewtreeobserver().removeglobalonlayoutlistener(this); } });
在activity的oncreate()
中直接通过view的gettop()
方法获取到view的高度会返回0,这是因为此时view还没有绘制到界面,所以我们采用上面的方法给view设置监听获取,由于可能发生多次绘制,所以最后记得移除监听事件。
以下代码同样可以获取:
tv_title.post(new runnable() { @override public void run() { mtitletopandheight = tv_title.gettop(); } });
利用post
方法将操作放到队列中,等系统布局完成后执行队列中的事件,同样可以获取到正确的view
的top
值。
3.2 获取垂直方向滚动距离
在scrollview
的父类view
中有个内容变化的方法onscrollchanged(),
虽然该方法是protect
的外部不可调用,但是在内部,当scrollview
滚动时就会执行该方法,所以我们自定义一个myscrollview
在onscrollchanged()
通过回调将滚动的距离传递给外部。
自定义scrollview完整代码如下:
public class myscrollview extends scrollview { private onscrolllistener monscrolllistener; /** * 是否用户手指触摸滑动 */ private boolean mistouch = false; public myscrollview(context context) { this(context, null); } public myscrollview(context context, attributeset attrs) { this(context, attrs, 0); } public myscrollview(context context, attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); } @override protected void onscrollchanged(int l, int t, int oldl, int oldt) { super.onscrollchanged(l, t, oldl, oldt); if (monscrolllistener != null) { monscrolllistener.onscroll(t, mistouch ? onscrolllistener.scroll_state_touch_scroll : onscrolllistener.scroll_state_fling); } } @override public boolean ontouchevent(motionevent ev) { switch (ev.getaction()) { case motionevent.action_move: mistouch = true; break; case motionevent.action_up: case motionevent.action_cancel: mistouch = false; break; } return super.ontouchevent(ev); } public void setonscrolllistener(onscrolllistener onscrolllistener) { monscrolllistener = onscrolllistener; } public interface onscrolllistener { /** * 用户手指拖动滚动 */ int scroll_state_touch_scroll = 0x0; /** * 惯性滑行滚动 */ int scroll_state_fling = 0x1; /** * 滚动时的回调 * * @param scrolly y方向滚动的距离 * @param scroll_state 当前滚动状态:*滚动或者手势拖动滚动 */ void onscroll(int scrolly, int scroll_state); } }
3.3 使用
在acitivity
中给scrollview
设置自定义滚动监听事件即可
mscrollview.setonscrolllistener(new myscrollview.onscrolllistener() { @override public void onscroll(int scrolly, int state) { log.d("onscroll: ", scrolly + "" + "----------- state:" + state); if (scrolly <= mtitletopandheight) { tv_float.setvisibility(view.invisible); } else { tv_float.setvisibility(view.visible); } } });
这样,通过垂直方法的滚动值来控制floatview
的显示隐藏,
tv_float.setontouchlistener(new view.ontouchlistener() { @override public boolean ontouch(view v, motionevent event) { mscrollview.ontouchevent(event); return false; } });
给悬浮view
设置触摸监听,将用户手势传递给scrollview
,这样用户滑动悬浮view
时,内容区域也可以跟随滚动。
下面是布局代码
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <com.example.qike.scrolltitle.myscrollview android:id="@+id/sv_main" android:layout_width="match_parent" android:layout_height="wrap_content"> <linearlayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <textview android:layout_width="match_parent" android:layout_height="200dp" android:gravity="center" android:text="商品图片"/> <textview android:id="@+id/tv_title" android:layout_width="match_parent" android:layout_height="40dp" android:background="#a3c" android:gravity="center" android:text="标题view"/> <textview android:layout_width="match_parent" android:layout_height="600dp" android:background="#a2bb" android:gravity="center" android:text="详情页面"/> </linearlayout> </com.example.qike.scrolltitle.myscrollview> <textview android:id="@+id/tv_float" android:layout_width="match_parent" android:layout_height="40dp" android:background="#a3c" android:gravity="center" android:text="标题view" android:visibility="invisible"/> </relativelayout>
4、第二种方式
本方法与第一种方式的区别就是获取滚动位置的方法不同,该方法更简单一些:
mscrollview.getviewtreeobserver().addonscrollchangedlistener(new viewtreeobserver.onscrollchangedlistener() { @override public void onscrollchanged() { int scrolly = mscrollview.getscrolly(); if (scrolly <= mtitletopandheight) { tv_float.setvisibility(view.invisible); } else { tv_float.setvisibility(view.visible); } } });
可能有读者要问,既然有这种简单的方法直接设置监听,为什么还介绍第一种方法。细心的你可能已经发现,在第一种方法中,我在自定义的监听事件中,还回调了代表当前回调状态的参数statue
,因为很多app,在用户手动拖动滚动跟惯性滚动的处理是不能的。比如淘宝商品详情页面,当达到边界值中间view
的top
值时,只有用户手动拖动一段距离后才会拉出底部的详情类容,而惯性滑动的话只会停在那里。
5、总结
以上就是关于安卓实现按钮随着上下滚动而悬浮顶在固定位置的方法,希望本文的内容对大家开发android能有所帮助。