Skip to content

Repository files navigation

EasySwipeLayout

ReleaseMinSdkLicense

English | 中文

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

特性:

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

引入

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

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

快照

演示程序

下载 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.

About

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

Topics

Resources

Stars

77 stars

Watchers

4 watching

Forks

Releases

Packages

Contributors

Languages