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

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...