I am working on swipe gesture. Actually I want to restrict swipe if touch coordinates > Tap on left and right edges of screen (100 px) like
If I swipe from left to right and touch coordinate > from screen left Top 100px I want to restrict swipe
If swipe from right to left and touch coordinate
And There is no Restriction for Top and Bottom swipe.
Here is my code what I tried :
float diffY = e2.getY() - e1.getY();
float diffX = e2.getX() - e1.getX();
if (Math.abs(diffX) > Math.abs(diffY)) {
if (Math.abs(diffX) > SWIPE_THRESHOLD
&& Math.abs(velocityX) > SWIPE_VELOCITY_THRESHOLD) {
if (diffX > 0) {
onSwipeRight();
} else {
onSwipeLeft();
}
}
} else {
if (Math.abs(diffY) > SWIPE_THRESHOLD
&& Math.abs(velocityY) > SWIPE_VELOCITY_THRESHOLD) {
if (diffY > 0) {
onSwipeBottom();
} else {
onSwipeTop();
}
}
}
Check this might help you
https://github.com/daimajia/AndroidSwipeLayout
Its library predefined swipe implementation