Tagged Questions
9
votes
1answer
480 views
How can a service listen for touch gestures/events?
I'm wondering how apps like SwipePad and Wave Launcher are able to detect touch gestures/events simply through a service. These apps are able to detect a touch gestures even though it is not in their ...
9
votes
4answers
7k views
How to make an Android view that flips between views on swipe/fling
I'd like to make a view in my Android app that flips between multiple views on a swipe/fling. I'd like it to behave more or less like the Android Launcher behaves when flipping between views. In ...
9
votes
1answer
6k views
Android: detecting fling gestures
In my app I try to capture a fling event on a view (a ScrollView to be exact, but tried with LinearLayout as well). By setting breakpoints I can see the that the MotionEvents happen correctly up to ...
7
votes
1answer
263 views
Does having variations of gestures in gesture library improve recognition?
I'm working on implementing gesture recognition in my app, using the Gestures Builder to create a library of gestures. I'm wondering if having multiple variations of a gesture will help or hinder ...
7
votes
3answers
3k views
Fling Gesture and Webview in Android
I have a webview control that needs to support the fling gesture in Android in order to bring up a new record (load new data). This is occuring in a class that extends Activity. All the examples I've ...
5
votes
1answer
437 views
Geting touch events (coordinates, MotionEvents, ect.) in a service
How do I get touch events like you can from an Activity using public boolean onTouchEvent(MotionEvent event)? There obviously isn't an onTouchEvent method to override in a service, so how can I go ...
4
votes
2answers
1k views
Listview not scrolling inside view flipper in android
A view flipper has 4 list views. When i flip the view flipper using gesture listener implemented on view flipper, it works fine. But I am not able to scroll the list view since the touch event is not ...
4
votes
2answers
540 views
How to get a Gesture View like in official Facebook app
I want to implement the same behaviour of the notification view in the official Facebook app.
The "notifications" tab are at the bottom and can drag/drop via fingers to full screen.
How can i do ...
4
votes
1answer
421 views
Can you explain(mathematical calculations) gesture example (Levenshtein )?
I got the example in this link.
I can't understand the addmove, costLeven and meatureGesture methods.
Can you explain it step by step?
4
votes
3answers
1k views
Are Android app widgets (for home screen) allowed gestures?
I noticed that when I swipe my finger from left to right across a home screen widget, in simulator on a AVD, Android switch to the left home screen.
I was wondering if its possible to prevent this ...
4
votes
4answers
3k views
How long is the event onLongPress in the Android?
Android supports an event onLongPress. The question I have is 'how long' (in milliseconds) is the 'press' to trigger the event?
3
votes
1answer
85 views
How to implement Android listview opening gesture
This is an open question about Android ListViews, Gestures and Animations.
I'm really not familiar with the gestures in Android, so I'm just looking for ideas and grey matter on this.
Here's two ...
3
votes
1answer
339 views
Unable to start activity with java.lang.NullPointerException on Fling
When I am trying to fling example this error faced. with java Null pointer exception.
My java code
public class LearnCount extends Activity {
private FlingGallery mGallery;
public boolean ...
3
votes
1answer
100 views
how can set gesture event in android on Text View
I have try to set gesture event on text view. i want to access left to right and right to left event on text view. same like touch event. i have text view and i want to set event on it. i have also ...
3
votes
5answers
2k views
Trouble with detecting gestures over ListView
I have an Activity that contains a ViewFlipper. The ViewFlipper includes 2 layouts, both of which are essentially just ListViews.
So the idea here is that I have two lists and to navigate from one ...
3
votes
2answers
4k views
How to use Android Map to zoom with hand gesture (iphone like)
How do you use the Android API to zoom in and out maps with the 2 finger gestures like iPhone?
2
votes
1answer
35 views
Android move items with acceleration
I cant seem to find the answer to this, mainly because I don't know what it is called.
I am going to expand a few features in my app, currently users can touch and drag to move forward in a list of ...
2
votes
1answer
25 views
OnGesturePerformedListener Error - Android
I am trying to implement a GestureOverlay and Listener in my application so it can perform actions based on input gestures. I have tried many different things but I cannot figure out what is wrong ...
2
votes
0answers
66 views
Gesture Detector with a Custom View-Based Class
I hope you can help me figure out why the OnSwipe, OnDoubleTap, and onSingTapConfirmed methods defined in my CustomView class which is instantiated from an activity onCreate using the following line -
...
2
votes
2answers
299 views
Gesture detection and ScrollView issue
I'm trying to create a layout with a ViewFlipper containing ScrollViews. The idea is to detect horizontal swipes to move to previous/next ScrollView. Moreover, the ScrollView contains another ...
2
votes
2answers
235 views
SimpleOnGestureListener not working for ScrollView
I have a screen where I have a header, a TextView inside a ScrollView and footer. I have to use ScrollView as the Text in the TextView can be long also.
Now when I am using SimpleOnGestureListener ...
2
votes
1answer
117 views
Are there any tutorial/code samples on controlling an animation with a gesture on a tablet?
What I mean by controlling an animation with a gesture, is like that I have an animation where my view object folds into itself. I want it to fold into itself when I slide my finger right-to-left ...
2
votes
2answers
2k views
Swipe to switch tab selection
I have an application that is a Tab activity with various tabs that load an Activity. I would like to add swipe gesturing to switch between tabs, on both the tab control itself and each activity ...
2
votes
1answer
909 views
Android debugging: java.lang.ArrayIndexOutOfBoundsException
I received this stack trace today and am having a problem finding the problem.
java.lang.ArrayIndexOutOfBoundsException
at android.view.MotionEvent.getY(MotionEvent.java:792)
at ...
2
votes
1answer
524 views
Gesture Detector not working
I has the following GestureListener:
public class BookListener extends SimpleOnGestureListener implements
OnTouchListener {
private LibraryActivity main;
private Book book;
private ...
2
votes
2answers
816 views
How can I implement onTouch function android?
Hi I want to create aplication which loads large image, and simple gesture I can move across it. I have to image printed out but I can not implement onTouch so it remains stationary. Any help ...
2
votes
2answers
548 views
How do you switch 2 different Views by using Drag Gesture in Android?
so im trying to create an interface where the user can drag their finger from the right to the left to get to the second view, and the first view being dragged will move from right to left. very ...
2
votes
3answers
12k views
Android ViewFlipper + Gesture Detector
I am using gesture detector to catch "flings" and using a view flipper to change the screen when this happens. Some of my child views contain list views. The the gesture detector wont recognize a ...
1
vote
1answer
16 views
How to persist the gestures of the GestureOverLayView?
Suppose I am writing a word "abc" in my GestureOverlayView and while doing so I need to save all those alphabets in the screen until I press a clear button.Can anyone tell me a good way to do this..
...
1
vote
1answer
171 views
How to enable multi touch gesture in phonegap android?
I have come across a strange problem. I am showing an image within my android application.
And I want to enable multi-touch gesture but it is not working. I have found that in
samsung galaxy it ...
1
vote
0answers
87 views
Decide between Fling and Drag gesture in ImageView
I use code from Mike Ortiz to zoom in ImageView and would like to add fling gestures, but drag gesture is sometimes caught as fling gesture, is there any way to filter right gesture? In some galleries ...
1
vote
1answer
81 views
How should I handle multiple strokes on GestureOverlayView?
I need to handle multiple strokes on gestureOverlayView by using ongestureListener handler, which is implemented by 4 functions: ongestureStarted(..), ongestureEnded(..), etc.
I used this in xml ...
1
vote
2answers
98 views
Gestures and OpenGL
I'm using OpenGL ES on android 2.3.3 at the minute to render a simple 3D game. I'd like to extend it using the built in gestures library, but I can't find a way to recognise the gestures from a ...
1
vote
1answer
155 views
Android Gesture Detection
I'm trying to develop an android application that is basically for drawing shapes.I want the user to make gesture on the screen and the shape that is more closely matching to gesture should be drawn ...
1
vote
0answers
75 views
android.gesture.GestureOverlayView gesture disappear instantly
This is my source code of signature.xml
<android.gesture.GestureOverlayView
android:id="@+id/signature" android:layout_width="fill_parent"
android:layout_height="120dip"
...
1
vote
0answers
50 views
How to get underlying view after a gesture is caught on a row of ListView
Scenario:
There is a Listview. A user can either swipe or tap on it for interaction. On tap, it opens a new Activity that shows details of an item from the Listview. On Swipe, it toggles state of the ...
1
vote
3answers
207 views
Horizontal swipe not detected in ScrollView's parent
EDIT: question with full code asked here.
I've got a layout with a child. I set a gesture listener to detect horizontal swipe on the layout. When the layout is a LinearLayout the swipe is properly ...
1
vote
1answer
180 views
Android catch two fingers tap on MapView
In my code I want to add zoom in on double-tap and zoom out on two-fingers-tap (like Google Maps). I'm using this code:
gestureDetector = new GestureDetector(new DoubleTapDetector());
touchListener = ...
1
vote
0answers
67 views
Don't know how to update the fling gesture code
Let's assume this:
I have activity1,activity2,activity3. The app will start with activity 2.What I want is that when the user makes that fling gesture to right activity 3 is shown,when to left ...
1
vote
0answers
75 views
Android Native Functions
I'm trying to create an active reading application prototype for my course project in Android platform. I'm new to Android SDK, and I cannot figure out how to use WebView's native functions, because I ...
1
vote
0answers
107 views
Setting both onClickListener and onTouchListener to a View
I need to set both an onClickListener and an onTouchListener to a View. When setting only one of them the corresponding listener works as expected, but when I set both, only the touch listener is ...
1
vote
0answers
50 views
other gesture API in android
i was just wondering as is there any other API or framework to work with gestures in android than the original API introduced in android because the one used in android is really not working when it ...
1
vote
0answers
74 views
Android gesture trail effects
I am implementing a custom gesture library, so I will be using GestureOverlayView, and I was wondering if there was any way to apply effects, like a sparkle or glow effect to the trail that the ...
1
vote
0answers
81 views
setGesture() displays the gesture outside the screen: Android
I am developing an android app in which I need to display the saved gesture to the user. I have tried doing it using the GestureOverlayView object's setGesture() function but it displays the gesture ...
1
vote
1answer
121 views
Identify single tap gesture within some time interval android
i want to perform some operation when user holds his finger on screen for 2 second(Time may vary). and single tap gesture.
i included gesture detection and used Motion Events methods like ActionDown ...
1
vote
1answer
406 views
disabled built in zoom controls disable pinch zoom, too
I have a WebView which should support zoom. The UI design requires custom zoom controls and therefore I disabled the built in zoom controls. The problem now, the pinch zoom is disabled, too. Setting ...
1
vote
1answer
197 views
swipe left, right, up and down depending on velocity or other variables
i've got a class extended from simple on gesture and i'm working with the onfling method:
class MyGestureListener extends GestureDetector.SimpleOnGestureListener{
@Override
public boolean ...
1
vote
3answers
418 views
Swipe detection for each row of listview
I have a list of videos located in the sd-card. At this point, I just need help in creating gestures or swipe detection for each row in the list view. Thanks to this question at stackoverflow Android ...
1
vote
2answers
1k views
How to rotate the image with two fingers and zoom in/out with pinch gesture in android?
Please provide any useful tutorial to handle image with multi-touch user interface
to handle image rotation zoom in/out.
I have already find out something but not so satisfactory.
1
vote
2answers
420 views
Android Gestures over an image
I'm continuing my learning with android and have now reached the point where I'm plating with gestures.
What I have so far is a activity screen and I can pop a Toast up when the gesture pattern is ...