Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Demo #27

Merged
merged 7 commits into from
Jan 12, 2019
Merged

Demo #27

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,50 @@ A continuous gesture which will dispatch `Began`, `Changed` and `Ended` state ch

---

# Demo

Single Tap| Double Tap | Double Tap 2 Fingers
:---: | :---: | :--: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/single_tap.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/double_tap.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/double_tap_2.gif" width=160 height=160 />

<br />

Logn Press| Long Press Double Tap
:---: | :---: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/long_press_1.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/long_press_double_tap_1.gif" width=160 height=160 />

<br />

Pan 1 Finger| Pan 2 Fingers
:---: | :---: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/pan_1.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/pan_2.gif" width=160 height=160 />

<br />

Pinch|
:---: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/pinch_1.gif" width=160 height=160 /> |

<br />

Rotate| Rotate min angle
:---: | :---: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/rotate_1.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/rotate_2.gif" width=160 height=160 /> |

<br />

Screen Edge 1 Finger| Screen Edge 2 Fingers
:---: | :---: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/screen_edge_1.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/screen_edge_2.gif" width=160 height=160 />

<br />

Swipe Left 1 Finger| Swipe Left 2 Fingers
:---: | :---: |
<img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/swipe_1.gif" width=160 height=160 /> | <img src="https://raw.githubusercontent.com/sephiroth74/AndroidUIGestureRecognizer/feature/demo/media/swipe_2.gif" width=160 height=160 />

---

# Installation

### Maven
Expand Down
Binary file added media/double_tap.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/double_tap_2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/long_press_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/long_press_double_tap_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/pan_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/pan_2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/pinch_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/rotate_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/rotate_2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/screen_edge_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/screen_edge_2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/single_tap.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/swipe_1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/swipe_2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion uigesturerecognizer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jacoco {

android {
compileSdkVersion rootProject.ext.compileSdkVersion
testBuildType "debug"

defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
Expand All @@ -36,7 +37,7 @@ android {
release {
minifyEnabled false
debuggable true
testCoverageEnabled true
testCoverageEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}

Expand Down