ikew0ng / SwipeBackLayout

An Android library that help you to build app with swipe back gesture.
Apache License 2.0
6.13k stars 1.4k forks source link

为什么不能支持全局滑动 #186

Open DaveBoy opened 5 years ago

DaveBoy commented 5 years ago

ViewDragHelper中的getEdgeTouched方法希望能改进, 这个方法会导致加大滑动区域后其他方向的判定距离也会变大,从而导致识别出来的滑动方向和设置的滑动方向冲突,导致很大部分区域无法滑动。 建议把setEdgeSize设置成四个参数,分为上下左右

luckybilly commented 5 years ago

@DaveBoy 试试SmartSwipe

其中的SmartSwipeBack实现了全局Activity侧滑返回功能,特色:

无需透明主题
无需继承某个特定的Activity
不需要侵入xml布局文件
也不需要侵入BaseActivity
全局只需一行代码即可搞定所有Activity侧滑返回
支持全屏侧滑和(/或)边缘侧滑

可选样式:开门、百叶窗、仿微信、仿QQ及仿MIUI贝塞尔曲线。

文档地址: https://luckybilly.github.io/SmartSwipe-tutorial/

Demo: image