Giter VIP home page Giter VIP logo

swipe's Introduction

swipe Android Arsenal

detects swipe events on Android with listener and RxJava Observable

swipe gestures

Check out an exemplary animation!

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

Current Branch Branch Artifact Id Build Status Maven Central
RxJava1.x swipe Build Status for RxJava1.x Maven Central
โ˜‘๏ธ RxJava2.x swipe-rx2 Build Status for RxJava2.x Maven Central

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

private Swipe swipe;
private Disposable disposable;

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();

  disposable = swipe.observe()
      .subscribeOn(Schedulers.computation())
      .observeOn(AndroidSchedulers.mainThread())
      .subscribe(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: dispose previously created Disposable when it's no longer needed:

@Override protected void onPause() {
  super.onPause();
  if (disposable != null && !disposable.isDisposed()) {
    disposable.dispose();
  }
}

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.

Listening to several events

If you want to react only on one event or several events in imperative way, use abstract class SimpleSwipeListener instead of SwipeListener interface and implement methods, which you need.

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.

swipe gestures

Download

You can depend on the library through Maven:

<dependency>
    <groupId>com.github.pwittchen</groupId>
    <artifactId>swipe-rx2</artifactId>
    <version>0.3.0</version>
</dependency>

or through Gradle:

dependencies {
  compile 'com.github.pwittchen:swipe-rx2:0.3.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, 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.

swipe's People

Contributors

dependabot-preview[bot] avatar pwittchen avatar xpathexception avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

swipe's Issues

Release 0.1.0

Initial release notes:

  • updated project dependencies
  • updated Gradle configuration
  • updated sample apps
  • renamed com.github.pwittchen.swipe.library.Swipe#addListener to com.github.pwittchen.swipe.library.Swipe#setListener - issue #14
  • added Swipe(int swipingThreshold, int swipedThreshold) constructor, which allows to configure swiping and swiped threshold/sensitivity - fixes #17

Things to do:

  • bump library version to 0.1.0
  • upload Archives to Maven Central Repository
  • close and release artifact on Nexus
  • update JavaDoc on gh-pages
  • update CHANGELOG.md after Maven Sync
  • update download section in README.md after Maven Sync
  • create new GitHub release

Kotlin implementation having issue with onSwiped methods

I implemented the code in SwipeActivity.kt but is having the following error message. Am I missing out on something?

onSwipingDown is fine, all the onSwiping methods are fine. This same problem is occurring on all the onSwiped methods, such as onSwipedDown.

image

P.S. - I implemented based on the sample app shared in this commit #7 (comment)

Release 0.2.0

Initial release notes:

  • migrated library to RxJava2.x as a separate artifact on a separate Git branch
  • removed master branch from the repo
  • updated project dependencies
  • updated Gradle to 3.x
  • added Retrolambda to sample Java app

Things to do:

  • RxJava1.x branch
    • bump library version to 0.2.0
    • upload Archives to Maven Central Repository
    • close and release artifact on Nexus
    • update JavaDoc on gh-pages
    • update CHANGELOG.md after Maven Sync
    • update download section in README.md after Maven Sync
    • create new GitHub release
  • RxJava2.x branch
    • bump library version to 0.2.0
    • upload Archives to Maven Central Repository
    • close and release artifact on Nexus
    • update JavaDoc on gh-pages
    • update CHANGELOG.md after Maven Sync
    • update download section in README.md after Maven Sync
    • create new GitHub release

Need ability to consume touch events

In this sample I attached click counter to root view and an edit text to show clicks. The problem is that any underlying view will process any swipe action as click after ACTION_UP. I would like to have an ability to consume touch events if swipe action was correctly handled in callback.

Default behavior (now):
no-consuming

Requested behavior:
consuing

Animatons with Swipe up and Down

Hi there,

Ive been using this library for navigation and a little animation with a WebView but currently I am trying to add a animation to shrink and expand the toolbar. It does shrink and expand, but say the toolbar is visible then it shouldn't re run the animation to show it. And vice-versa. Ive been with this issue for over a week now and am looking for others for help to figure this out. the code Im using is as follows:

 WebSwipe = new Swipe(350, 700);
   WebSwipe.setListener(new SwipeListener() {
            int vis = 0;
            @Override
            public void onSwipingLeft(final MotionEvent event) {
            }
            @Override
            public void onSwipedLeft(final MotionEvent event) {
            }
            @Override
            public void onSwipingRight(final MotionEvent event) {
            }
            @Override
            public void onSwipedRight(final MotionEvent event) {
            }
            @Override
            public void onSwipingUp(final MotionEvent event) {
            }
            @Override
            public void onSwipedUp(final MotionEvent event) {
                if(m_Toolbar.getVisibility() == View.VISIBLE){
                    Animation ToolbarGone = AnimationUtils.loadAnimation(CoreActivity.this, R.anim.m_toolbar_gone);
                    m_Toolbar.startAnimation(ToolbarGone);
                    vis = 1;
                }
                else {
                }
            }
            @Override
            public void onSwipingDown(final MotionEvent event) {
            }
            @Override
            public void onSwipedDown(final MotionEvent event) {
                if(m_Toolbar.getVisibility() == View.GONE
                        ||m_Toolbar.getVisibility() == View.INVISIBLE || vis ==1) {
                    Animation ToolbarVisible = AnimationUtils.loadAnimation(CoreActivity.this, R.anim.m_toolbar_visible);
                    m_Toolbar.startAnimation(ToolbarVisible);
                    vis = 2;
                }
                else{
                    if(vis == 2){
                        ToolbarVisible.setRepeatMode(Animation.INFINITE);
                    }
                }
 }

Ive asked around StackOverflow for help but they advised I use a if statement or a variable but this doesn't solve the problem. Im pretty well trying to not rerun the same code if the toolbar is there but can't find a way around it to do it

Add support for RxJava 2

The implementation will be almost the same, only Subscriber<SwipeEvent> need to be replaced by ObservableEmitter<SwipeEvent>.

Configurable distance / velocity

Hi,

It would be great if the minimum swipe distance / velocity before a trigger could be configurable. Something like :

Swipe swipe = new Swipe();
swipe.setDistance(100);
swipe.setVelocity(100);
swipe.setListener(new SwipeListener() {

	// Triggered if and only if the minimum distance and velocity are reached :

	@Override
	public void onSwipedLeft(final MotionEvent event) {}
	
	@Override
	public void onSwipedRight(final MotionEvent event) {}
	
	@Override
	public void onSwipedUp(final MotionEvent event) {}
	
	@Override
	public void onSwipedDown(final MotionEvent event) {}
	
	// Triggered the same way as before :

	@Override
	public void onSwipingLeft(final MotionEvent event) {}

	@Override
	public void onSwipingRight(final MotionEvent event) {}
	
	@Override
	public void onSwipingUp(final MotionEvent event) {}

	@Override
	public void onSwipingDown(final MotionEvent event) {}
	
});

Release 0.3.0-rx2

Initial release notes:

  • added possibility to consume touch events -> issue #27 -> PR #28
  • added abstract class SimpleSwipeListener implementing SwipeListener interface, which allows to implement several touch events without being forced to implement all of them -> PR #28
  • bumped RxJava2.x -> 2.1.9
  • bumped Truth -> 0.39
  • bumped Kotlin version -> 1.2.20

Things to do:

  • bump library version to 0.3.0
  • upload Archives to Maven Central Repository
  • close and release artifact on Nexus
  • update JavaDoc on gh-pages
  • update CHANGELOG.md after Maven Sync
  • update download section in README.md after Maven Sync
  • create new GitHub release

Release v. 0.0.1 of the library

Things to do:

  • set library version to 0.0.1
  • upload Archives to Maven Central Repository
  • close and release artifact on Nexus
  • create gh-pages with javaDoc
  • create CHANGELOG.md after Maven Sync
  • update download section in README.md after Maven Sync
  • create new GitHub release

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.