Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
com.github.pwittchen:gesture-rx2
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/RxJava2.x
Current Branch | Branch | Artifact Id | Build Status | Maven Central |
---|---|---|---|---|
RxJava1.x | gesture | |||
:ballot_box_with_check: | 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 Disposable 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 dispose subscription when it's no longer needed:
@Override protected void onPause() {
super.onPause();
if (subscription != null && !subscription.isDisposed()) {
subscription.dispose();
}
}
Exemplary application is located in app
directory of this repository.
If you would like to see sample app in Kotlin, check app-kotlin
directory.
latest version:
replace x.y.z
with the latest version
You can depend on library through Maven:
<dependency>
<groupId>com.github.pwittchen</groupId>
<artifactId>gesture-rx2</artifactId>
<version>x.y.z</version>
</dependency>
or through Gradle:
dependencies {
compile 'com.github.pwittchen:gesture-rx2:x.y.z'
}
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-rx2 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.