Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liuguangqiang/swipeback
SwipeBack is an android library that can finish a activity by using gesture.
https://github.com/liuguangqiang/swipeback
android gesture java swipeback
Last synced: 29 days ago
JSON representation
SwipeBack is an android library that can finish a activity by using gesture.
- Host: GitHub
- URL: https://github.com/liuguangqiang/swipeback
- Owner: liuguangqiang
- License: apache-2.0
- Created: 2014-06-19T06:15:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T09:33:00.000Z (over 2 years ago)
- Last Synced: 2024-10-14T23:45:39.446Z (29 days ago)
- Topics: android, gesture, java, swipeback
- Language: Java
- Homepage:
- Size: 6.7 MB
- Stars: 1,739
- Watchers: 43
- Forks: 314
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SwipeBack [![Build Status](https://travis-ci.org/liuguangqiang/SwipeBack.png?branch=master)](https://travis-ci.org/liuguangqiang/SwipeBack)
===========SwipeBack is a android library that can finish a activity by using gesture.
You can set the swipe direction,such as left,top,right and bottom.
## Screenshots
![image](Images/swipeback_demo.gif)![image](Images/swipeback.gif)
## Sample Download
[Sample Download](https://github.com/liuguangqiang/SwipeBack/raw/master/Images/apks/swipe_back_demo_v1.0.apk)![image](Images/download.png)
## Usage
### Gradle
```
dependencies {
compile 'com.github.liuguangqiang.swipeback:library:1.0.2@aar'
}
```### Maven
```com.github.liuguangqiang.swipeback
library
1.0.2
aar```
### SwipeBackActivity
SwipeBackActivity is a base activity for using this library more easier.This Activity will help us to show a shadow.![image](Images/swipe_back_activity.gif)
```
public class CommonActivity extends SwipeBackActivity {@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_common);
setDragEdge(SwipeBackLayout.DragEdge.LEFT);
}}
```### Layout and activity theme.
SwipeBackLayout must contains only one direct child.```
```
```
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
```### Swipe Direction
You can set DragEdge to change the swipe direction.```
public enum DragEdge {
LEFT,
TOP,
RIGHT,
BOTTOM
}
```### Support Views
SwipeBackLayout must contains only one direct child.Such as:
* LinearLayout,
* RelativeLayout,
* ListView,
* ViewPager
* WebView## License
Copyright 2015 Eric Liu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.