Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
com.github.pwittchen:gesture
Advanced tools
detects gestures on Android with listener and RxJava Observable.
detects gestures on Android with listener and RxJava Observable.
This project is a fork of better-gesture-detector by Polidea.
JavaDoc: http://pwittchen.github.io/gesture/RxJava1.x
Current Branch | Branch | Artifact Id | Build Status | Maven Central |
---|---|---|---|---|
:ballot_box_with_check: | RxJava1.x | gesture | ||
RxJava2.x | gesture-rx2 |
Step 1: Create Gesture
attribute in the Activity
:
private Gesture gesture;
Step 2: Initialize Gesture
object and add GestureListner
:
gesture = new Gesture();
gesture.addListener(new GestureListener() {
@Override public void onPress(MotionEvent motionEvent) {
textView.setText("press");
}
@Override public void onTap(MotionEvent motionEvent) {
textView.setText("tap");
}
@Override public void onDrag(MotionEvent motionEvent) {
textView.setText("drag");
}
@Override public void onMove(MotionEvent motionEvent) {
textView.setText("move");
}
@Override public void onRelease(MotionEvent motionEvent) {
textView.setText("release");
}
@Override public void onLongPress(MotionEvent motionEvent) {
textView.setText("longpress");
}
@Override public void onMultiTap(MotionEvent motionEvent, int clicks) {
textView.setText("multitap [" + clicks + "]");
}
});
Step 3: Override dispatchTouchEvent(MotionEvent)
method:
@Override public boolean dispatchTouchEvent(MotionEvent event) {
gesture.dispatchTouchEvent(event);
return super.dispatchTouchEvent(event);
}
Step 1: Create Gesture
attribute and Subscription
in the Activity
:
private Gesture gesture;
private Subscription subscription;
Step 2: Initialize Gesture
object and subscribe RxJava Observable
:
gesture = new Gesture();
subscription = gesture.observe()
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(event -> {
textView.setText(event.toString());
});
GestureEvent
is an enum with the following API:
public enum GestureEvent {
ON_PRESS,
ON_TAP,
ON_DRAG,
ON_MOVE,
ON_RELEASE,
ON_LONG_PRESS,
ON_MULTI_TAP;
int getClicks();
GestureEvent withClicks(int clicks);
}
Step 3: Override dispatchTouchEvent(MotionEvent)
method:
@Override public boolean dispatchTouchEvent(MotionEvent event) {
gesture.dispatchTouchEvent(event);
return super.dispatchTouchEvent(event);
}
Step 4: Don't forget to unsubscribe subscription when it's no longer needed:
@Override protected void onPause() {
super.onPause();
if (subscription != null && !subscription.isUnsubscribed()) {
subscription.unsubscribe();
}
}
Exemplary application is located in app
directory of this repository.
If you would like to see sample app in Kotlin, check app-kotlin
directory.
You can depend on library through Maven:
<dependency>
<groupId>com.github.pwittchen</groupId>
<artifactId>gesture</artifactId>
<version>0.1.0</version>
</dependency>
or through Gradle:
dependencies {
compile 'com.github.pwittchen:gesture:0.1.0'
}
To execute unit tests run:
./gradlew test
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 runs Checkstyle, FindBugs, PMD and Lint. It can be executed with command:
./gradlew check
Reports from analysis are generated in library/build/reports/
directory.
Initial code base for this project is provided by Polidea.
Copyright 2012 Polidea
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 at
http://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
FAQs
detects gestures on Android with listener and RxJava Observable.
We found that com.github.pwittchen:gesture demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.