SwipeLayout一个展示条目底层菜单的侧滑控件

2024-06-22 12:48

本文主要是介绍SwipeLayout一个展示条目底层菜单的侧滑控件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

由于项目上的需要侧滑条目展示收藏按钮,记得之前代码家有写过一个厉害的开源控件 AndroidSwipeLayout 本来准备直接拿来使用,但是看过 issue 发现现在有不少使用者反应有不少的 bug ,而且代码家现在貌似也不进行维护了.故自己实现了一个所要效果的一个控件.因为只是实现我需要的效果,所以大家也能看到,代码里有不少地方我是写死的.希望对大家有些帮助.而且暂时也不需要 AndroidSwipeLayout 大而全的功能,算是变相给自己做的项目精简代码了.

完整示例代码请看: GitHub 地址

主要源码:

public class SwipeLayout extends FrameLayout {public static final int CLOSE = 0;public static final int OPEN = 1;private int mState = CLOSE;private int mWidth;private int mHeight;private float mDownX;private float mDownY;private GestureDetectorCompat mGestureDetector;private SwipeListener mSwipeListener;private View mTopView;private View mBottomView;private ViewDragHelper mViewDragHelper;public SwipeLayout(Context context) {this(context, null);}public SwipeLayout(Context context, AttributeSet attrs) {this(context, attrs, 0);}public SwipeLayout(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);mGestureDetector = new GestureDetectorCompat(context, new GestureDetector.SimpleOnGestureListener() {@Overridepublic boolean onSingleTapUp(MotionEvent e) {if (mSwipeListener != null) {mSwipeListener.onClickListener();}return super.onSingleTapUp(e);}});mViewDragHelper = ViewDragHelper.create(this, new ViewDragHelper.Callback() {@Overridepublic boolean tryCaptureView(View child, int pointerId) {//只对mTopView进行处理return child == mTopView;}@Overridepublic int clampViewPositionHorizontal(View child, int left, int dx) {//设置横向滑动的边界(left的值是mTopView左上角点的x坐标值)int newLeft;if (left <= -mBottomView.getMeasuredWidth()) {newLeft = -mBottomView.getMeasuredWidth();} else if (left >= 0) {newLeft = 0;} else {newLeft = left;}return newLeft;}@Overridepublic int clampViewPositionVertical(View child, int top, int dy) {//因为不需要上下的滑动直接设置为0(top的值是mTopView左上角点的y坐标值)return 0;}@Overridepublic void onViewReleased(View releasedChild, float xvel, float yvel) {//手指松开时会回调该函数if (xvel == 0 && yvel == 0) {return;}int right = mWidth - releasedChild.getRight();//mTopView右边界距离屏幕右边的距离int bottomWidth = mBottomView.getMeasuredWidth();if (right > bottomWidth * 9 / 10) {scrollToLeftEdge();return;}if (right <= bottomWidth / 10 && right > 0) {scrollToRightEdge();return;}if (xvel == 0) {//速度为0时单独处理if (right >= bottomWidth / 2) {scrollToLeftEdge();} else if (right < bottomWidth / 2) {scrollToRightEdge();}return;}if (xvel > 0) {//向右滑动后松手scrollToRightEdge();} else {//向左滑动后松手scrollToLeftEdge();}}});}@Overridepublic void computeScroll() {if (mViewDragHelper.continueSettling(true)) {invalidate();}}@Overridepublic boolean onInterceptTouchEvent(MotionEvent ev) {switch (ev.getAction()) {case MotionEvent.ACTION_DOWN:mDownX = ev.getRawX();mDownY = ev.getRawY();if (mState == CLOSE) {return true;}break;case MotionEvent.ACTION_MOVE:float distanceX = ev.getRawX() - mDownX;float distanceY = ev.getRawY() - mDownY;float angle;if (distanceX == 0) {angle = 90;} else {angle = (float) Math.toDegrees(Math.atan(Math.abs(distanceY / distanceX)));}if (angle < 45) {return true;//拦截事件交给自己处理滑动}break;}return mViewDragHelper.shouldInterceptTouchEvent(ev);}@Overridepublic boolean onTouchEvent(MotionEvent ev) {mGestureDetector.onTouchEvent(ev);ViewParent viewParent = getParent();switch (ev.getAction()) {case MotionEvent.ACTION_DOWN:mDownX = ev.getRawX();mDownY = ev.getRawY();break;case MotionEvent.ACTION_MOVE:float distanceX = ev.getRawX() - mDownX;float distanceY = ev.getRawY() - mDownY;float angle;if (distanceX == 0) {angle = 90;} else {angle = (float) Math.toDegrees(Math.atan(Math.abs(distanceY / distanceX)));}if (angle < 45 && viewParent != null) {viewParent.requestDisallowInterceptTouchEvent(true);//让父控件不要处理事件,交给自己处理}break;case MotionEvent.ACTION_CANCEL:case MotionEvent.ACTION_UP:if (viewParent != null) {viewParent.requestDisallowInterceptTouchEvent(false);}break;}mViewDragHelper.processTouchEvent(ev);return true;}@Overrideprotected void onLayout(boolean changed, int l, int t, int r, int b) {super.onLayout(changed, l, t, r, b);int measureHeight = mBottomView.getMeasuredHeight();int measureWidth = mBottomView.getMeasuredWidth();mBottomView.layout(mWidth - measureWidth, (mHeight - measureHeight) / 2, mWidth, mHeight + measureHeight / 2);//靠右边界垂直居中if (mState == OPEN) {mTopView.layout(-measureWidth, 0, mTopView.getMeasuredWidth() - measureWidth, mTopView.getMeasuredHeight());}}@Overrideprotected void onSizeChanged(int w, int h, int oldw, int oldh) {super.onSizeChanged(w, h, oldw, oldh);mWidth = w;mHeight = h;}@Overrideprotected void onFinishInflate() {super.onFinishInflate();if (getChildCount() != 2) {throw new IllegalStateException("only and should contain two child view");}View bottomView = getChildAt(0);if (!(bottomView instanceof ViewGroup)) {throw new IllegalStateException("sideslip menu should be contained by a viewgroup");}mBottomView = bottomView;mTopView = getChildAt(1);}//回滚到左边(只能在onViewReleased里使用该方法)private void scrollToLeftEdge() {mViewDragHelper.settleCapturedViewAt(-mBottomView.getMeasuredWidth(), 0);invalidate();mState = OPEN;if (mSwipeListener != null) {mSwipeListener.onOpenListener(this);}}//回滚到右边(只能在onViewReleased里使用该方法)private void scrollToRightEdge() {mViewDragHelper.settleCapturedViewAt(0, 0);invalidate();mState = CLOSE;if (mSwipeListener != null) {mSwipeListener.onCloseListener(this);}}public void smoothClose() {mViewDragHelper.smoothSlideViewTo(mTopView, 0, 0);invalidate();mState = CLOSE;}public int getState() {return mState;}public void setState(int state) {mState = state;invalidate();}public interface SwipeListener {void onOpenListener(SwipeLayout swipeLayout);void onCloseListener(SwipeLayout swipeLayout);void onClickListener();}public void setSwipeListener(SwipeListener mSwipeListener) {this.mSwipeListener = mSwipeListener;}}

效果图

SwipeLayout.gif

这篇关于SwipeLayout一个展示条目底层菜单的侧滑控件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1084338

相关文章

禁止平板,iPad长按弹出默认菜单事件

通过监控按下抬起时间差来禁止弹出事件,把以下代码写在要禁止的页面的页面加载事件里面即可     var date;document.addEventListener('touchstart', event => {date = new Date().getTime();});document.addEventListener('touchend', event => {if (new

【编程底层思考】垃圾收集机制,GC算法,垃圾收集器类型概述

Java的垃圾收集(Garbage Collection,GC)机制是Java语言的一大特色,它负责自动管理内存的回收,释放不再使用的对象所占用的内存。以下是对Java垃圾收集机制的详细介绍: 一、垃圾收集机制概述: 对象存活判断:垃圾收集器定期检查堆内存中的对象,判断哪些对象是“垃圾”,即不再被任何引用链直接或间接引用的对象。内存回收:将判断为垃圾的对象占用的内存进行回收,以便重新使用。

哈希表的底层实现(1)---C++版

目录 哈希表的基本原理 哈希表的优点 哈希表的缺点 应用场景 闭散列法 开散列法 开放定值法Open Addressing——线性探测的模拟实现 超大重点部分评析 链地址法Separate Chaining——哈希桶的模拟实现 哈希表(Hash Table)是一种数据结构,它通过将键(Key)映射到值(Value)的方式来实现快速的数据存储与查找。哈希表的核心概念是哈希

Windows如何添加右键新建菜单

Windows如何添加右键新建菜单 文章目录 Windows如何添加右键新建菜单实验环境缘起以新建`.md`文件为例第一步第二步第三步 总结 实验环境 Windows7 缘起 因为我习惯用 Markdown 格式写文本,每次新建一个.txt后都要手动修改为.md,真的麻烦。如何在右键新建菜单中添加.md选项呢? 网上有很多方法,这些方法我都尝试了,要么太麻烦,要么不凑效

lvgl8.3.6 控件垂直布局 label控件在image控件的下方显示

在使用 LVGL 8.3.6 创建一个垂直布局,其中 label 控件位于 image 控件下方,你可以使用 lv_obj_set_flex_flow 来设置布局为垂直,并确保 label 控件在 image 控件后添加。这里是如何步骤性地实现它的一个基本示例: 创建父容器:首先创建一个容器对象,该对象将作为布局的基础。设置容器为垂直布局:使用 lv_obj_set_flex_flow 设置容器

TL-Tomcat中长连接的底层源码原理实现

长连接:浏览器告诉tomcat不要将请求关掉。  如果不是长连接,tomcat响应后会告诉浏览器把这个连接关掉。    tomcat中有一个缓冲区  如果发送大批量数据后 又不处理  那么会堆积缓冲区 后面的请求会越来越慢。

起点中文网防止网页调试的代码展示

起点中文网对爬虫非常敏感。如图,想在页面启用调试后会显示“已在调试程序中暂停”。 选择停用断点并继续运行后会造成cpu占用率升高电脑卡顿。 经简单分析网站使用了js代码用于防止调试并在强制继续运行后造成电脑卡顿,代码如下: function A(A, B) {if (null != B && "undefined" != typeof Symbol && B[Symbol.hasInstan

小程序button控件上下边框的显示和隐藏

问题 想使用button自带的loading图标功能,但又不需要button显示边框线 button控件有一条淡灰色的边框,在控件上了样式 border:none; 无法让button边框隐藏 代码如下: <button class="btn">.btn{border:none; /*一般使用这个就是可以去掉边框了*/} 解决方案 发现button控件有一个伪元素(::after

MFC中Spin Control控件使用,同时数据在Edit Control中显示

实现mfc spin control 上下滚动,只需捕捉spin control 的 UDN_DELTAPOD 消息,如下:  OnDeltaposSpin1(NMHDR *pNMHDR, LRESULT *pResult) {  LPNMUPDOWN pNMUpDown = reinterpret_cast(pNMHDR);  // TODO: 在此添加控件通知处理程序代码    if

Linux 云计算底层技术之一文读懂 Qemu 架构

Qemu 架构概览 Qemu 是纯软件实现的虚拟化模拟器,几乎可以模拟任何硬件设备,我们最熟悉的就是能够模拟一台能够独立运行操作系统的虚拟机,虚拟机认为自己和硬件打交道,但其实是和 Qemu 模拟出来的硬件打交道,Qemu 将这些指令转译给真正的硬件。 正因为 Qemu 是纯软件实现的,所有的指令都要经 Qemu 过一手,性能非常低,所以,在生产环境中,大多数的做法都是配合 KVM 来完成