Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pwittchen/swipe
👉 detects swipe events on Android
https://github.com/pwittchen/swipe
android gesture-detection rxandroid rxandroid2 rxjava rxjava2 swipe
Last synced: 6 days ago
JSON representation
👉 detects swipe events on Android
- Host: GitHub
- URL: https://github.com/pwittchen/swipe
- Owner: pwittchen
- License: apache-2.0
- Created: 2014-12-24T14:13:05.000Z (almost 10 years ago)
- Default Branch: RxJava2.x
- Last Pushed: 2020-08-19T08:51:34.000Z (over 4 years ago)
- Last Synced: 2024-12-08T06:42:08.539Z (14 days ago)
- Topics: android, gesture-detection, rxandroid, rxandroid2, rxjava, rxjava2, swipe
- Language: Java
- Homepage:
- Size: 603 KB
- Stars: 328
- Watchers: 13
- Forks: 43
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
swipe [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Swipe-brightgreen.svg?style=flat-square)](http://android-arsenal.com/details/1/3323)
=====detects swipe events on Android with listener and RxJava Observable
![swipe gestures](art/swipe.png)
Check out an exemplary **[animation](#example)**!
JavaDoc is available at: http://pwittchen.github.io/swipe/RxJava2.x
| Current Branch | Branch | Artifact Id | Build Status | Maven Central |
|:--------------:|:-------:|:-----------:|:-------------:|:-------------:|
| | [`RxJava1.x`](https://github.com/pwittchen/swipe/tree/RxJava1.x) | `swipe` | ![Build Status for RxJava1.x](https://img.shields.io/travis/pwittchen/swipe/RxJava1.x.svg?style=flat-square) | ![Maven Central](https://img.shields.io/maven-central/v/com.github.pwittchen/swipe.svg?style=flat-square) |
| :ballot_box_with_check: | [`RxJava2.x`](https://github.com/pwittchen/swipe/tree/RxJava2.x) | `swipe-rx2` | ![Build Status for RxJava2.x](https://img.shields.io/travis/pwittchen/swipe/RxJava2.x.svg?style=flat-square) | ![Maven Central](https://img.shields.io/maven-central/v/com.github.pwittchen/swipe-rx2.svg?style=flat-square) |Contents
--------
- [Usage](#usage)
- [Imperative way - Listener](#imperative-way---listener)
- [Reactive way - RxJava](#reactive-way---rxjava)
- [Configuring swipe threshold](#configuring-swipe-threshold)
- [Listening to several events](#listening-to-several-events)
- [Example](#example)
- [Download](#download)
- [Tests](#tests)
- [Code style](#code-style)
- [Static code analysis](#static-code-analysis)
- [References](#references)
- [License](#license)Usage
-----### Imperative way - Listener
**Step 1**: Create `Swipe` attribute in the `Activity`:
```java
private Swipe swipe;
```**Step 2**: Initialize `Swipe` object and set listener:
```java
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);
info = (TextView) findViewById(R.id.info);swipe = new Swipe();
swipe.setListener(new SwipeListener() {
@Override public void onSwipingLeft(final MotionEvent event) {
info.setText("SWIPING_LEFT");
}@Override public void onSwipedLeft(final MotionEvent event) {
info.setText("SWIPED_LEFT");
}@Override public void onSwipingRight(final MotionEvent event) {
info.setText("SWIPING_RIGHT");
}@Override public void onSwipedRight(final MotionEvent event) {
info.setText("SWIPED_RIGHT");
}@Override public void onSwipingUp(final MotionEvent event) {
info.setText("SWIPING_UP");
}@Override public void onSwipedUp(final MotionEvent event) {
info.setText("SWIPED_UP");
}@Override public void onSwipingDown(final MotionEvent event) {
info.setText("SWIPING_DOWN");
}@Override public void onSwipedDown(final MotionEvent event) {
info.setText("SWIPED_DOWN");
}
});
}
```**Step 3**: override `dispatchTouchEvent(MotionEvent event)`:
```java
@Override public boolean dispatchTouchEvent(MotionEvent event) {
swipe.dispatchTouchEvent(event);
return super.dispatchTouchEvent(event);
}
```### Reactive way - RxJava
**Step 1**: Create `Swipe` attribute and `Subscription` in the `Activity`:
```java
private Swipe swipe;
private Disposable disposable;
```**Step 2**: Initialize `Swipe` object and subscribe `Observable`:
```java
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
info = (TextView) findViewById(R.id.info);swipe = new Swipe();
disposable = swipe.observe()
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(swipeEvent -> info.setText(swipeEvent.toString()));
}
````SwipeEvent` is an enum with the following values:
```java
public enum SwipeEvent {
SWIPING_LEFT,
SWIPED_LEFT,
SWIPING_RIGHT,
SWIPED_RIGHT,
SWIPING_UP,
SWIPED_UP,
SWIPING_DOWN,
SWIPED_DOWN
}
```**Step 3**: override `dispatchTouchEvent(MotionEvent event)`:
```java
@Override public boolean dispatchTouchEvent(MotionEvent event) {
swipe.dispatchTouchEvent(event);
return super.dispatchTouchEvent(event);
}
```**Step 4**: dispose previously created `Disposable` when it's no longer needed:
```java
@Override protected void onPause() {
super.onPause();
if (disposable != null && !disposable.isDisposed()) {
disposable.dispose();
}
}
```Configuring swipe threshold
---------------------------If you want to configure swipe threshold to adjust swipe sensitivity, you can use the following constructor:
```java
Swipe(int swipingThreshold, int swipedThreshold)
```Default `swipingThreshold` is equal to `20` and default `swipedThreshold` is equal to `100`.
In the case of using `Swipe()` constructor, these values are set.
Decreasing these values will increase swiping and swiped events sensitivity.
We can adjust them manually for our needs.Listening to several events
---------------------------If you want to react only on one event or several events in imperative way, use abstract class `SimpleSwipeListener` instead of `SwipeListener` interface and implement methods, which you need.
Example
-------Exemplary application is located in `app` directory of this repository.
If you would like to know, how to use this library with Kotlin, check `app-kotlin` directory in this repository.
Below, you can see an animation presenting how sample application works.
![swipe gestures](art/swipe-animation.gif)
Download
--------You can depend on the library through Maven:
```xml
com.github.pwittchen
swipe-rx2
0.3.0```
or through Gradle:
```groovy
dependencies {
compile 'com.github.pwittchen:swipe-rx2:0.3.0'
}
```Tests
-----To execute unit tests run:
```
./gradlew test
```Code style
----------Code style used in the project is called `SquareAndroid` from Java Code Styles repository by Square available at: https://github.com/square/java-code-styles.
Static code analysis
--------------------Static code analysis runs Checkstyle, PMD and Lint. It can be executed with command:
```
./gradlew check
```Reports from analysis are generated in `library/build/reports/` directory.
References
----------- [better gesture detector project](https://github.com/Polidea/better-gesture-detector)
- [detecting swipe gesture in mobile application](http://wittchen.io/detecting-swipe-gesture-in-mobile-application/)
- [dispatchTouchEvent(event) method in documentation](http://developer.android.com/reference/android/view/ViewGroup.html#dispatchTouchEvent(android.view.MotionEvent))
- [MotionEvent class in documentation](http://developer.android.com/reference/android/view/MotionEvent.html)License
-------Copyright 2016 Piotr Wittchen
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.