一款简单高效的滑动返回库,模仿MIUI返回和即刻返回功能

EasySwipeLayout

Release MinSdk License

English | 中文

A simple sliding layout view, 一款简单高效的滑动库,模仿MIUI滑动返回功能。

特性:

  • 支持上下左右边缘拉出.
  • 支持全局添加、Xml添加、单独添加.
  • 支持自定义效果.
  • 支持多点触摸.

引入

添加如下依赖到你的 build.gradle 文件:

dependencies {
    implementation 'me.dkzwm.widget.esl:core:0.0.1'
    AndroidX版本
    implementation 'me.dkzwm.widget.esl:core:0.0.1.androidx'
}

快照

在这里插入图片描述

演示程序

下载 Demo.apk

使用

在Xml中配置
<?xml version="1.0" encoding="utf-8"?>
<me.dkzwm.widget.esl.EasySwipeLayout
    android:id="@+id/easySwipeLayout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:esl_direction="right"
	//指定自定义Drawer的类名
    app:esl_specified="@string/specified_the_class_name"
	//指定样式为自定义,此时需要配置esl_specified属性
    app:esl_style="custom">
</me.dkzwm.widget.esl.EasySwipeLayout>
Java代码全局配置
EasySwipeConfig config =
      new EasySwipeConfig.Builder(application)
              .direction(Constants.DIRECTION_ALL)
              .style(Constants.STYLE_MIUI)
              .build();
EasySwipeManager.init(config);
}
Java代码单独配置
EasySwipeLayout layout = EasySwipeManager.attach(activity);
if (layout != null) {
     layout.setDirection(Constants.DIRECTION_LEFT);
     layout.setDrawer(new CustomDrawer(this));
     layout.setSwipeListener(
             new OnSwipeListener() {
                 @Override
                 public void onSwipe(int side) {
                     onBackPressed();
                 }
             });
}
Xml属性
名称类型描述
esl_edgeDiffreference配置边缘点击容差,默认为2倍系统触摸容差(系统ScaledTouchSlop*2)
esl_styleenum配置拉出的效果,默认MIUI效果
esl_specifiedstring配置自定义效果的实现类路径,仅当esl_stylecustom时生效
esl_resistancefloat配置移动阻尼(默认:3f
esl_durationOfCloseint配置收起效果的时长(默认:500
esl_directionenum配置支持划出方向(默认:左边缘往右划
java属性设置方法
名称参数描述
setSwipeListenerOnSwipeListener配置监听
setDirectionint配置支持划出方向
setStyleint,String配置拉出的效果
setDrawerDrawer配置指定自定义效果实现
setEdgeDiffint配置边缘点击容差
setResistancefloat配置移动阻尼
setDurationOfCloseint配置收起效果的时长

License

MIT License

Copyright (c) 2018 dkzwm

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值