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 the screen. I came to know that it can be done through GestureOverlayView but dont know how to implement it.

Can anyone please help me with some sample code.

link|improve this question

67% accept rate
have a look at my code. stackoverflow.com/q/9786676/1192775 – Jibin TJ Mar 20 at 12:49
feedback

2 Answers

up vote 3 down vote accepted

Have you already looked at the Android demos on Gestures? There is a lot of sample code there to get you started:

http://developer.android.com/resources/articles/gestures.html

link|improve this answer
yes but it didnt help me in recognising the way in which i want. – Rosalie Jun 7 '11 at 6:28
1  
How so? You want to recognize text that the user draws and then print it on top of the screen. Seems like exactly what that demo is doing. Perhaps you could clarify what you want? – Jon Jun 7 '11 at 6:32
2  
Yes, so you will have to create a library of all the gestures you want your application to detect and then load it. You can also search for a gesture library on Google and just include it with your application that way if you don't want to create your own. – Jon Jun 7 '11 at 6:43
1  
is that the only way to do it? – Rosalie Jun 7 '11 at 6:45
1  
There is never one way to do anything, but at the moment, I can only think of including a library of valid gestures with your application (not something the user creates) and just use that to interpret user's gestures. – Jon Jun 7 '11 at 6:46
show 2 more comments
feedback

You can these two links which will be helpful

GestureOverlay

GestureOverlayView

Use this

public class YourClass extends Activity implements OnGesturePerformedListener {  
  private GestureLibrary mLibrary;   
mLibrary = GestureLibraries.fromRawResource(this, R.raw.gestures);  
 if (!mLibrary.load()) {     
    finish();   
  }     
 GestureOverlayView gestures =    (GestureOverlayView)findViewById(R.id.gestures);
     gestures.addOnGesturePerformedListener(this);  
public void onGesturePerformed(GestureOverlayView overlay, Gesture gesture) {  
   ArrayList<Prediction> predictions = mLibrary.recognize(gesture); 
    Log.v("performed","performed");  
   // We want at least one prediction  
   if (predictions.size() > 0) {    
     Prediction prediction = predictions.get(0);   
      // We want at least some confidence in the result   
      if (prediction.score > 1.0) {        
                 if(prediction.name.equalsIgnorecase("right")){    
                       //do you thing here//       
                } 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.