A package in the Android SDK that provides classes to create, recognize, load and save gestures. Gestures are patterns on the touch screen that map to specific functions.
0
votes
1answer
12 views
Prevent Fling on horizontalScrollView
Hello fellow Android programmers !
I Have a HorizontalScrollView in a VerticalScrollView.
UX team decided to add a 'Fling' like action to quickly switch between screens. Now when we try to scroll ...
0
votes
0answers
12 views
Swiping Navigation
I have a list view of all my Facebook friend lists. I want clicking on an item from the list view to display a detailed view of the friend. Now I want to slide this detail view of the items to show ...
0
votes
1answer
43 views
Add gesture listener to child view without hiding parent's touch event
I want to have an overlay view to receive gesture events but still keep receiving onTouch event of parent(below) view. However, The gesture in child view seems hide parent onTouch event.
Layout
...
1
vote
2answers
29 views
Android distinguish between tap and double tap
I am using the onTouch method to catch a touch with ACTION_UP and GestureDetector to capture the double tap, my issue is a double tap results in a tap then a double tap, then a tap. Is there a way to ...
0
votes
1answer
55 views
Blur Activity Background with Swipe in android
I need to blur activity background when i swipe from Right to Left and Left to Right. I have read about Blur or dim background when Android PopupWindow active and dim background with FLAG_DIM_BEHIND. ...
0
votes
1answer
44 views
How to disable gesture highlight animation on onGesturePerformed?
I was doing similar gesture detection from vogella tutorial here.
My MainActivity is:
package com.example.gesturesaveopendocs;
import java.util.ArrayList;
import ...
0
votes
1answer
43 views
gestureListener is null when onTouch is called
for some reason when the user flings from left to right my app crashes for the first time. But if they do a right to left fling it works fine.
It only does this on a gridView that I've constructed. ...
0
votes
0answers
18 views
Android - Which layout to listen to implement gestures in my application
I want my application to listen to gesture. Just a simple gesture l-r, r-l.
So, from the main layout, when you swipe from left to right, a sidemenu appears. And when you swipe from right to left, ...
0
votes
1answer
64 views
Issues Implementing Android fling gesture
I'm attempting to implement a fling gesture. Ultimately it will have the same function as the native android contact app, you'll swipe the listview and it'll open up the dialer. I'm having an issue ...
0
votes
0answers
54 views
ImageView is visible at different row of ListView on Swipe
I have a ListView and on swipe of any item of ListView I want to show a delete image on that item.
The problem is delete image is not appearing on that item on which swipe action was made instead it ...
0
votes
0answers
44 views
How to find the text in textviews while gesturing on screen
Hi I need to get the text in textview while gesturing on the screen .
This is my xml code.....
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
1answer
206 views
Detect swipe using onTouchListener in ScrollView
I'm using the following code to detect swipe in my Activity:
getWindow().getDecorView().getRootView().setOnTouchListener(new OnTouchListener() {
@Override
public boolean ...
1
vote
1answer
382 views
How to implement horizontal swipe inside a fragment?
I have two fragments with-in an activity. I want to implement swipe in one of those fragments. My layout is:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
0answers
27 views
method save for GestureLibrary class
I'm running the GestuerBuilder app delivered with the Android SDK on my nexus LG. In this app, the author uses the method save of GestureLibrary class to save a Gesture object.
I'm wondering where is ...
0
votes
0answers
30 views
ScrollView inside Layout.OnGestureListener
I have a layout that contains a scrollview as one of its child. I have applied Gesture detection to the layout because I need to handle the swipe gestures.
Gesture is working properly but i am unable ...
1
vote
1answer
55 views
how to add/create new gestures in oracle jdeveloper 11.1.2.3?
edited:
I am new to Oracle Jdeveloper 11.1.2.3, can any one please tell me, how can I use the gestures created in gesture builder application (in emulator) in my own application ?
I found this link ...
0
votes
0answers
74 views
Strokes not being saved in gesture over lay view of android?
I'm trying to save signature using gesture overlay view in android, it works fine when finger is in contact with screen, when i try to add other stroke on same view, previous stroke is being erased.
...
3
votes
0answers
75 views
How can I modify the Android Gesture visuals (for on screen gesture detection)?
Essentially what I'm trying to do is use this gesture functionality as demonstrated below
https://www.youtube.com/watch?v=tG3lzBDMRQQ
http://www.vogella.com/articles/AndroidGestures/article.html
...
0
votes
0answers
35 views
dragging an list item smoothly in android
I have a list view with a set of items in it.
I user the ACTION_DOWN, ACTION_MOVE, and ACTION_UP events to perform gesture detection on the list items.
In ACTION_MOVE, I have the following line of ...
0
votes
1answer
32 views
Is it possible to have one GestureDetector for ALL activities?
Is there a better way to implement a GestureDetetor to all activities instead of having to define a GestureDetector individually?
In my scenario I have 10 activities for which I would like all of ...
-2
votes
1answer
81 views
changing color for gesture builder
I made an app for Android, and I use a gesture builder to make some gestures that get more points in the game (it's concretely a quiz for nerds and geeks). It works fine, but I'd like to be able to ...
0
votes
2answers
64 views
ImageView onClick() and fling() gesture clashing
I have an activity in which i have set an imageView. OnFling i load another image and onClick on the image i have to go to another activity.
Now the problem is that when i try to fling/swipe on the ...
0
votes
1answer
650 views
Android libgdx swipe left and right detection using gesture listener
I have displayed a image at the center of the screen with libgdx. If i swipe left the image should move left and if i swipe right image should move right.
Subsequent swipes to the left should move ...
1
vote
1answer
1k views
Android “swipe left to right to delete”, gesture on list item, ICS Style
I am trying to implement the "swipe left to right to delete" gesture that is present for the notifications in Android ICS and above.
I have a listview in my application. I have the gesture detector ...
0
votes
2answers
719 views
Ho to add our own gestures in android?
i am working on the gestures concept .I want know some thing about how to add our own gestures in android.For example if user drawn "O" symbol i want to make some events.Please share some tutorials ...
3
votes
3answers
500 views
Could not get Touch event for TYPE_SYSTEM_OVERLAY
I like to develop an app that is similar to Swapps .i am trying to display a button on top of any screen and that should occur only on a swiping action.I tried with the below code
...
0
votes
1answer
366 views
Android canvas - Drawing arc between to points and removing arc from path
In my android application, i want to provide tracing letter feature as shown in following image :
Here i want to provide tracing of letter-D and for that i need to draw arc between two points when ...
3
votes
2answers
585 views
How to implement a “Two Finger Drag” gesture on Android?
I am new to Android development and am working on an accessibility research project for blind people (Jelly Bean API level 17 project). I have been experimenting with some gestures and the ...
0
votes
0answers
106 views
Limiting horizontal swipe gesture in android
I am developing musicplayer application which provides facility of playing next and previous song through left and right swipe gesture.
Only center portion of the screen should fire swipe gesture. I ...
0
votes
0answers
100 views
Android: OnGestureListener.onFling gives wrong direction
I'm using the OnGestureListener to detect a fling gesture:
class GestureListener extends SimpleOnGestureListener
{
@Override
public boolean onFling( MotionEvent evStart, MotionEvent evEnd, ...
0
votes
0answers
136 views
Drag and drop image off screen and delete it
I am coding an application that draws 3 images on a canvas. The idea is these images can be moved vertically on the screen and once you move an image to the top or bottom of the screen that image is ...
1
vote
1answer
47 views
Variable gesture not being recognized
So I am trying to implement a gesture on Fling feature on this page. I have already used gestures, but for some reason this code will not run. I do get a warning, but I do not know how to fix it, it ...
1
vote
0answers
245 views
Android Listview Scroll Behavior Scroll on fast fling/move otherwise not
I want a create a Custom ListView which will have following behavior,
1. When I scroll my finger on List It Should not Scroll by itself.
2. When User has finger down and moving finger slowly then ...
0
votes
2answers
133 views
How can i move my activity like slider when i swipe the page in android
I want to make a movement between my activity when I swipe the page. While I swipe the page, the pages have to come with my hand movement.
I have detected the swipe direction using ...
2
votes
2answers
559 views
Run Activity in background without UI
In my application, I want to use stealth mode so that the service which is containing some activities in it will be running in the background. But at the same time on certain guesture or some ...
0
votes
1answer
413 views
Android GestureDetector Swipe Up/Down vs. Left/Right
I'm using GestureDetector to change the view. It works, but how do I make so that it only changes when the user swipes from Left-to-Right or Right-to-Left and not Down-to-Up...
Thanks in advance
0
votes
1answer
99 views
Adjust SimpleOnGestureListener.onFling() sensitivity
I have implemented SimpleOnGestureListener.onFling(), but I have to fling very fast to trigger it. Is there any way to make it more sensitive?
Thanks in advance...
0
votes
2answers
579 views
How to use three fragments with one screen?
I am designing an application that requires a tablet to be split into three separate screens as shown below. Each screen will have a picture on it and when you swipe this picture vertically it will ...
1
vote
1answer
258 views
How to properly set fixTransX & fixTransY of TouchImageView to implement doubleTap to ZoomOut?
I am using TouchImageView from here.
I am trying to implement ZoomOut for double tap. I have done it partially. But, I am facing some issues when zoomed out. If I zoom the Image & if I give a ...
0
votes
1answer
185 views
How do i make a gesture listener to be inactive during the first second after creating the class?
I´m having the following problem in my game:
let´s say I have 5 screens on the lvl 3. Each screen has a class for itself. so i have 5 classes named lvl 3_1_0, 3_2_0 .... .... 3_5_0. I also have a ...
0
votes
1answer
254 views
Why motionEvent.getX() return inconsistent values, when using setScaleX()?
I've child view resides in a ViewGroup.
I'd like to scale (zoom) the child with a pinch.
I'm using setScaleX/Y() to scale the child. The scale is calculated form distance between 2 pointers, in ...
0
votes
1answer
420 views
How to add touch event to show latitude and longitude in a toast in OSM
How do I add this function below in my code? The url is this: how to add more marker in osm map in android please help me? I want to add feature to print toast message of every location where user ...
12
votes
1answer
463 views
Actionbar's onNavigationItemSelected(int position, long itemId) not triggered after horizontle swipe in Gingerbread
I have implemented Tab view as well as Horizontal swipe view(to change tabs) with Navigation mode as Lists for the application. I am using ActionBarSherlock & TabPageIndicator. I used fragments ...
0
votes
1answer
42 views
Addressing the main layout in Android
I have an issue with the following passage.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GestureOverlayView gestureOverlayView = new ...
0
votes
0answers
492 views
Animating on the Fling event
package com.example.flingtry;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.graphics.drawable.AnimationDrawable;
import ...
1
vote
1answer
483 views
What Gesture File must be downloaded and how should be done?
What Gesture file should be downloaded and paste it in Raw folder under res? How if user's drawn gestures would be recognized from gesture file which has been downloaded. Could anyone tell me this?
...
2
votes
0answers
350 views
android SimpleOnGestureListener only triggered onscroll event
My Layout xml file like this
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
...
1
vote
3answers
262 views
How to create Gestures in my application?
I have submit button. When i do click or tap below a submit button, it should be able to recognize the gesture by programmatically in android. How could i do this ?
Do i need to download anything ...
0
votes
1answer
290 views
How could i drag it by using Gesture?
By using Gestures, can i able to drag like this image ? I mean, have to drag as a tick mark . So for this onClickListener must be used. After it performs,then it should be able to open another screen ...
1
vote
1answer
177 views
Android: Want to show layout on top when user scroll up and hide when scroll down in webview
I'm building an application in which I have loaded the webpage on webview. I have one layout which contains edittext in that. I want to hide the layout when user is scrolling down in the webview and ...





