Skip to main content

Voice Input to Populate Edit Text in android?


I am working on voice input in android. I used the sample from




http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/VoiceRecognition.html




And while testing on Xperia X10, I got the "Speak now" dialog but before I input some voice it gets closed. I am trying to implement voice search e.g. If voice input is James Bond then I want to populate the James in first name Edit Text and Bond in Last name Edit Text. Which will search in database for the name. But while trying to use the API Demo sample, its not working. May be I am missing something. Will anybody post any sample for voice input rather than ApiDemos sample.



Thanks in advance.


Source: Tips4allCCNA FINAL EXAM

Comments

  1. You can used following code for Voice Recognized and For complete Tutorial for voice Recognize Click Here

    import android.app.Activity;
    import android.os.Bundle;
    import android.content.Intent;
    import android.content.pm.PackageManager;
    import android.content.pm.ResolveInfo;
    import android.speech.RecognizerIntent;
    import android.view.View;
    import android.widget.ArrayAdapter;
    import android.widget.Button;
    import android.widget.ListView;
    import java.util.ArrayList;
    import java.util.List;

    /**
    * A very simple application to handle Voice Recognition intents
    * and display the results
    */
    public class VoiceRecognitionDemo extends Activity
    {

    private static final int REQUEST_CODE = 1234;
    private ListView wordsList;

    /**
    * Called with the activity is first created.
    */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.voice_recog);

    Button speakButton = (Button) findViewById(R.id.speakButton);

    wordsList = (ListView) findViewById(R.id.list);

    // Disable button if no recognition service is present
    PackageManager pm = getPackageManager();
    List<ResolveInfo> activities = pm.queryIntentActivities(
    new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
    if (activities.size() == 0)
    {
    speakButton.setEnabled(false);
    speakButton.setText("Recognizer not present");
    }
    }

    /**
    * Handle the action of the button being clicked
    */
    public void speakButtonClicked(View v)
    {
    startVoiceRecognitionActivity();
    }

    /**
    * Fire an intent to start the voice recognition activity.
    */
    private void startVoiceRecognitionActivity()
    {
    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
    RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
    intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Voice recognition Demo...");
    startActivityForResult(intent, REQUEST_CODE);
    }

    /**
    * Handle the results from the voice recognition activity.
    */
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
    if (requestCode == REQUEST_CODE && resultCode == RESULT_OK)
    {
    // Populate the wordsList with the String values the recognition engine thought it heard
    ArrayList<String> matches = data.getStringArrayListExtra(
    RecognizerIntent.EXTRA_RESULTS);
    wordsList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,
    matches));
    }
    super.onActivityResult(requestCode, resultCode, data);
    }
    }

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex