Swipe


Source link: https://github.com/pwittchen/swipe

swipe

detects swipe events on Android with listener and RxJava Observable

JavaDoc is available at: http://pwittchen.github.io/swipe/

Check out an exemplary animation!

Contents

Usage

Imperative way - Listener

Step 1: Create Swipe attribute in the Activity:

private Swipe swipe;

Step 2: Initialize Swipe object and set listener:

@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):

@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 Activiy:

private Swipe swipe; private Subscription subscription;

Step 2: Initialize Swipe object and subscribe Observable:

@Override protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

info = (TextView) findViewById(R.id.info);

swipe = new Swipe();

subscription = swipe.observe()

 .subscribeOn(Schedulers.computation())

 .observeOn(AndroidSchedulers.mainThread())

 .subscribe(new Action1<SwipeEvent>() {

@Override public void call(final SwipeEvent swipeEvent) {

  info.setText(swipeEvent.toString());

}

 
}
);
 
}

SwipeEvent is an enum with the following values:

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):

@Override public boolean dispatchTouchEvent(MotionEvent event) {

swipe.dispatchTouchEvent(event);

return super.dispatchTouchEvent(event);
 
}

Step 4: unsubscribe previously created Subscription when it's no longer needed:

@Override protected void onPause() {

super.onPause();

if (subscription != null && !subscription.isUnsubscribed()) {

  subscription.unsubscribe();

}
 
}

Configuring swipe threshold

If you want to configure swipe threshold to adjust swipe sensitivity, you can use the following constructor:

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.

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.

Download

You can depend on the library through Maven:

<dependency>
  <groupId>com.github.pwittchen</groupId>
  <artifactId>swipe</artifactId>
  <version>0.1.0</version> </dependency>

or through Gradle:

dependencies {

compile 'com.github.pwittchen:swipe:0.1.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, FindBugs, PMD and Lint. It can be executed with command:

./gradlew check 

Reports from analysis are generated in library/build/reports/ directory.

References

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 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 limitations under the License. 

Resources

Android library for streamlining SharedPreferences.

A very simple color picker.

Android ImageViews animated by Ken Burns Effect.

Provides the Floating Action Button Toolbar as specified in the Material Design Guide in a simple library.

Emmet is an protocol based data-transfer for Android Wear.

Dagger Play is a small set of reusable classes for Dagger injection. There many ways to implement Dagger into your project. Unfortunately memory leaks can occur easily if you implement it without attention.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes