Tagged Questions
8
votes
2answers
854 views
Gesture Recognition In Android
I'm new to Android and I'm working on Gestures. I have a problem regarding how to recognise the text. When a user draws a letter or number that has to be recognised and has to be printed on the top of ...
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 ...
4
votes
3answers
168 views
Slider in Android App
I'm working on a project that requires a button to only be pressed once a translucent screen has been slid up. This allows for access to the main button (Press Me, in the picture). I would like for ...
4
votes
1answer
316 views
Gestures Prediction in Android
I am trying to work on Gestures but the problem is I'm not able to understand some of the lines of code in the sample which is present in the developer's website. Can anyone just explain me the ...
3
votes
1answer
1k views
how to create a raw file of android gestures
I have noticed in the android gesture examples, that it reads the gestures from the res/raw folder. it would be a great thing for my application to include a 'getting started' list of gestures. that ...
3
votes
0answers
314 views
Android single- and multi-stroke gestures in the same library confuses the GesturesOverlayView?
I have noticed a problem on various handsets that if you save gestures while the stroketype is set to single and then change the stroketype to multi and add some multi-stroke gestures, the multi ones ...
2
votes
2answers
85 views
Automatic Hand Animation in Android
I am developing an application for kids which does include a lot of animation. As a part of that I have to write a letter 'S' automatically on the GestureOverlay when an activity starts. It should be ...
2
votes
2answers
176 views
Runtime Cropping an Image in android
I have already selected an image from SD card in my activity's ImageView using Intent.and now I want to show a fixed size moving Rectangle i.e. we have to use gesture and whatever portion of the image ...
2
votes
1answer
3k views
sliding between images android
Thanks for reading!
I am relatively new to Android Animation and Gestures.
I have 15 images that I want to slide around. Only one image shows up on the screen at a time and when I slide L->R on ...
2
votes
1answer
352 views
Android GestureOverlay with vertical and horizontal strokes
I am currently trying to implement GestureOverlay to capture both vertical and horizontal strokes on top my view. Typically this functionality is not accepted, as it assumes you are applying on top ...
2
votes
1answer
199 views
Is high-level android lib for gestures that sends event when ascii char is drawn
Is there a high level android library for gestures that sends event when ascii character is drawn? So far I has seen only support for low level gestures --- strokes etc. I would like to add a ...
2
votes
1answer
377 views
Android - Detect Path of Complex Drag
I am recently getting into Android programming and want to make a simple game using 2D canvas drawing. I have checked out the Lunar Lander example and read up on some gestures, but it looks like I ...
2
votes
1answer
316 views
Why would changing the StrokeType of a GestureOverlayView affect the standard behaviour of the view?
I recently introduced multi-stroke gestures into my application. This is a preference so I set the StrokeType dynamically in Activity.OnCreate. What I have discovered is that if you set the StrokeType ...
2
votes
1answer
4k views
How to best handle fling gesture for Android ListActivity
I have an Android app with a ListActivity in the main view. The list contains a LinearLayout with a TextView and a hidden delete Button. The delete Button will be hidden by default. I want to use a ...
1
vote
0answers
23 views
how to use android gesture search?
Im trying to use gesture search in my application, can any one tell which is the best way to do it, now im using a gesture builder apk to generate gestures im confused is that the only way or i can ...
1
vote
0answers
17 views
Strange error in android gesture recognition
In my program, I am using the onGesturePerformed listener to recognise a gesture and then trying to show the top 5 predictions. I am using an arrayList predictions to store the scores and names of ...
1
vote
1answer
26 views
Problems while trying to save gestures to GestureLibrary
I am building gestures from files in a directory and trying to save them in a gesturelibary.
I am unable to do so correctly please help
class B implements Runnable
{
File main;
...
1
vote
1answer
59 views
Flip View like in Contacts Activity (ICS) or Google+ App
I am searching for an easy way to implement a view flipping like used in several occasions by google apps.
Behaviour should be like this: OnScroll the view should move to the side and show the content ...
1
vote
1answer
72 views
onGesturePerformed not recognizing gestures, always returning null
I've read up on gestures in android and even found a similar issue on this site but the solution was not given. So I'm asking it again.
I would like to use GestrueOverlay to flip through a view ...
1
vote
3answers
243 views
The import com.android.internal.R cannot be resolved
Hi i am working with Gestures and i need to import but i m getting error
com.android.internal.R;
The import com.android.internal.R cannot be resolved
kindly help me , please
1
vote
0answers
102 views
onGesturePerformedListener with SurfaceView and animation Thread
I am working on a children's game for Android that uses gestures and 2d animation. I have three classes in the game: the main activity, the SurfaceView (for the animation), and a thread to control ...
1
vote
1answer
222 views
How to identify three finger tap in android
I want to detect three finger tap in android screen.I am able to detect up to two fingers.How to detect three fingers it?I heard some where that android is capable of detecting 2 fingers.Is it so?
1
vote
1answer
82 views
Android - Gestures dont's want to work
I ran Gestures Builder app, created gestures file for slide left/right and wrote this code:
public class MainActivity extends Activity implements OnGesturePerformedListener {
private ...
1
vote
1answer
636 views
Getting a simple fling gesture
So this is half a how-to and half a best practices question.
First, if I just want to get a simple "fling right" (which will go back to a previous activity) should I implement OnGestureListener or do ...
1
vote
1answer
598 views
Android, gestures over clickable widgets
My application contains an area filled with buttons. I wish to implement the activity in such way, that fling gesture over the button area would switch it to one of two another areas (using ...
1
vote
1answer
1k views
How to override some gesture events over a webview, but let others through?
I'm still figuring out the ins and outs of the SDK so bear with me here.
So i'm trying to implement a Webview, that keeps multitouch zoom controls and vertical scroll intact (webview class handles ...
1
vote
2answers
3k views
Android: GestureDetector not working (gestureDetector.onTouchEvent(event) always false) with Tabs (TabActivity, Tabwidget)
I have implemented my TabActivity with different child activities:
intent = new Intent().setClass(this, MyChildTabActiviy.class);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = ...
1
vote
1answer
237 views
Android: problem with GestureOverlayView/Multitouch on Nexus One
Problem: I have multitouch unintentionally generating a single stroke
gesture.
I'm using a GestureOverlayView over the entire screen and not
attempting to use multitouch at all. I'm using
...
1
vote
1answer
577 views
Problems with Scrolling in LinearLayout
I have a fairly simple question which somehow I can't figure out. I'm using a FrameLayout with an own view (onDrawn is overriden) and another transparent view which extends LinearLayout. I want to add ...
1
vote
0answers
100 views
How to combine onTap with Gestures?
It would have been nice to see an example of how to combine onTap with Gestures and how to determine the tap position in a zoomed image. (I have used each of them separately, but I suspect some ...
1
vote
1answer
373 views
Swipe gesture for number input
If (in Android) you wanted to write an alarm app where the user entered in the time for the alarm by swiping the hours & minutes up and down, what's the easiest way of achieving this? Is it the ...
1
vote
1answer
90 views
?Sending a String created inside a method to another class
I have code which has one activity which passes information to a second activity.
I can use this information to pass to a third activity with additional information from the result of the second ...
1
vote
1answer
2k views
Implementing Gesture Recognition In An Android App
I am adding gesture recognition to my app. I have added the view as described in the Android Developers Gestures article but when it comes to adding:
mLibrary = GestureLibraries.fromRawResource(this, ...
0
votes
1answer
12 views
Android Gestures to Replace Physical Arrow Keys
I'm starting from scratch and I don't even know where to look.. or even what to call this.. so any help would be appreciated.
I am working with the Snake example that Google supplies and I want it to ...
0
votes
0answers
12 views
Android Gestures With Multiple Views
I'm trying to add gestures to my platformer. I had the same code working in a seperate app but now I'm trying to bring it in to the game it throws an error(NullPointerException) when adding the ...
0
votes
1answer
27 views
Android: Check if device is capable of 3 or more touches
I know there is a way to check if a device is capable of multi-touch. However these seems to return true if a device is capable of 2 or more touches.
I need to know if the device is capable of 3 ...
0
votes
2answers
77 views
DoubleTap detection on Android “View” component
What I need to achieve here is as following
1) superimpose a transperent "dot" on the PNG image ; where user has clicked.
2) superimpose a transperent "Big circle", when user is holding touch for ...
0
votes
0answers
43 views
Gesture and Animation conflict
I am coding an app that implements Gestures and animation. I'm new in Android programming so I'm bumping into problems. What I want to do is play an animation when a gesture is performed.
The problem ...
0
votes
1answer
227 views
How to open the sdcard.img file on windows?
I use the Gesture Build to build some gestures for my app on the Emulator. The generated file is saved in the sdcard, which on my Windows is a img file. How can I load it and get the content?
0
votes
0answers
38 views
Android: Gestures Overlay stop displaying visual clues
I am creating an application in Android that utilizes Gestures. I have recorded the gestures using 'Gesture Tool' aka Gesture Builder.
Everything works fine (no issues with detecting gestures or ...
0
votes
0answers
29 views
GestureDetection ; letting uncaught events through to parents?
I am dynamically adding views to my layout .
These views all have gesture-detection.
When the adding of views ends I want to overlay a View which has a specific gesture.
the OnLongPress to be ...
0
votes
2answers
102 views
scrollable curved wheel View
is it possible to get or create a wheel of selectable options, which scrolls in an imaginary circle rather than straight down (vertically)?
Straight Link But Want Curved
e.g. like the control here, ...
0
votes
0answers
115 views
ScrollView and Gesturedetecter in TextSwitcher
I will try to add all the code that might be helpful but please ask if somethings missing!!
setContentView(R.layout.weeklytext); //this is only a TextSwitcher
gestureDetector = new ...
0
votes
1answer
72 views
Gestures prediction issue in android
I am making an application in which user will be making gestures on screens and if the user has any contact number stored against that gesture , it will dial that number . now i am having an issue ...
0
votes
1answer
46 views
Droid - Get X & Y Coords from a Zoom/Move bitmap to translate to other activities
I've got a nice bit of code that allows a user to scale and move an image around on screen to put the shapes where they want. My problem is that when the user goes to another screen/activity, the ...
0
votes
3answers
241 views
How to slide-in and slide-out the Activity on clicking of button.?
I want to slide-in and slide-out the activity on button click event.
0
votes
1answer
244 views
Problems with swipe fling gesture and android ListActivity: fling gesture is activating underlying list items
I'm trying to implement a swipe fling gesture on a list activity. This is working but the problem is that the touch events also activate the items on the list!
I've looked for other answers but ...
0
votes
1answer
352 views
Ontouch multitouch zooming in Imageswitcher?
I am trying to enable pinch-zooming on an imageswitcher. I am stuck right now in how to declare the imageview in the ontouch method. I realize that the ImageView i = (Imageview) v is incorrect, I just ...
0
votes
0answers
127 views
Android SimpleOnScaleGestureListener Scale start
I have a SimpleOnScaleGestureListener implemented over a View, and whenever I put two (and more) fingers on the Screen, It registers that a Scale gesture begun. Actually, I want the scale gesture to ...
0
votes
0answers
27 views
ScaleGesture centered ZoomOut
error error error error error error error error error error error error error error error error error error error error error error error error error error error error error error error