在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):championswimmer/SimpleFingerGestures_Android_Library开源软件地址(OpenSource Url):https://github.com/championswimmer/SimpleFingerGestures_Android_Library开源编程语言(OpenSource Language):Java 94.6%开源软件介绍(OpenSource Introduction):SimpleFingerGesturesAn android library to implement simple 1 or 2 finger gestures easily ExampleLibraryThe library is inside the libSFG folder Sample AppThe sample App is inside the sample folder Implementing SimpleFingerGestures
private SimpleFingerGestures mySfg = new SimpleFingerGestures();
mySfg.setOnFingerGestureListener(new SimpleFingerGestures.OnFingerGestureListener() {
@Override
public boolean onSwipeUp(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " up");
return false;
}
@Override
public boolean onSwipeDown(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " down");
return false;
}
@Override
public boolean onSwipeLeft(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " left");
return false;
}
@Override
public boolean onSwipeRight(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("swiped " + fingers + " right");
return false;
}
@Override
public boolean onPinch(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("pinch");
return false;
}
@Override
public boolean onUnpinch(int fingers, long gestureDuration, double gestureDistance) {
grtv.setText("unpinch");
return false;
}
@Override
public boolean onDoubleTap(int fingers) {
return false;
}
});
How to add to your projectThe easiest way to add to your project is the download the latest zip from the Releases tab. Inside you'll find a compiled library in .jar format that you can just drop in to the libs folder of your Android app project for it to get automatically added as a library Also you can add it using jitpack maven distribution. repositories {
jcenter()
maven {
url "https://jitpack.io"
}
} Add the dependency
dependencies {
compile 'in.championswimmer:SimpleFingerGestures_Android_Library:1.2'
} DocumentationFind documentation at http://championswimmer.github.io/SimpleFingerGestures_Android_Library/documentation |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论