2011-09-27 13 views
19

मैं एंड्रॉइड में वॉयस इनपुट पर काम कर रहा हूं। मैंएंड्रॉइड में टेक्स्ट संपादित करने के लिए आवाज इनपुट?

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

से उदाहरण का इस्तेमाल किया और एक्सपीरिया X10 पर परीक्षण करते समय, मैं "अब बोलें" संवाद मिला लेकिन मैं इनपुट कुछ आवाज होने से पहले ही बंद कर दिया जाता है। मैं आवाज खोज को लागू करने की कोशिश कर रहा हूं उदा। अगर वॉयस इनपुट जेम्स बॉन्ड है तो मैं जेम्स नाम को अंतिम नाम संपादित टेक्स्ट और बॉन्ड में नाम संपादित करना चाहता हूं। जो नाम के लिए डेटाबेस में खोज करेगा। लेकिन एपीआई डेमो नमूना का उपयोग करने की कोशिश करते समय, यह काम नहीं कर रहा है। हो सकता है कि मुझसे कुछ छूट रहा हो। क्या कोई ApiDemos नमूना के बजाए ध्वनि इनपुट के लिए कोई नमूना पोस्ट करेगा।

अग्रिम धन्यवाद।

उत्तर

17

आप ध्वनि पहचान के लिए निम्नलिखित कोड का उपयोग कर सकते हैं। ध्वनि पहचान के लिए एक पूर्ण ट्यूटोरियल के लिए, 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); 
} 
} 
संबंधित मुद्दे