如何:语音命令到Android应用程序
网上有许多教程,将语音识别添加到Android应用程序。 他们往往混淆,编码出版商从来没有问题。 我需要一个简单的教程与完整的编码,为我的应用程序添加语音识别。
如果你想添加语音识别到你的组的Android应用程序,这是非常简单的。
在本教程中,您需要在粘贴代码时添加导入。
- 创build一个XML文件或使用现有的文件,并确保你添加一个button和一个列表视图。
- 在一个java类中,你需要扩展活动并实现OnClickListener你会得到一个错误,说你有未实现的方法。 将鼠标hover在上面并添加未实现的方法。 我们稍后再补充一点。
-
接下来在你的java中设置button和listview。
public ListView mList; public Button speakButton;
还补充:
public static final int VOICE_RECOGNITION_REQUEST_CODE = 1234;
-
接下来,创build一个OnCreate方法并设置button和侦听器。
speakButton = (Button) findViewById(R.id.btn_speak); speakButton.setOnClickListener(this);
还要添加这个方法(我们将在下面设置)
voiceinputbuttons();
请记住为您显示的xml设置ContentView。
-
在你的oncreate之外做一个新的方法,看起来像这样。
public void voiceinputbuttons() { speakButton = (Button) findViewById(R.id.btn_speak); mList = (ListView) findViewById(R.id.list); }
-
现在您将不得不通过使用以下代码来设置您的语音识别活动。
public 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, "Speech recognition demo"); startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE); }
-
接下来,在步骤2中的onclick方法中,添加步骤6中的活动。
startVoiceRecognitionActivity();
-
接下来我们将要设置另一种方法。 复制并粘贴以下代码。
@Override public void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == VOICE_RECOGNITION_REQUEST_CODE && resultCode == RESULT_OK) { ArrayList<String> matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS); mList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, matches));
匹配是语音input的结果。 这是用户可能说的一个列表。 对你想使用的关键字使用if语句允许使用任何活动,如果关键字匹配,可以设置多个关键字使用相同的活动,所以多个单词将允许用户使用活动(使它用户不必记忆列表中的单词)要从语音input信息中使用活动,只需使用以下格式;
if (matches.contains("information")) { informationmenu(); }
注意:你可以通过在eclipse中按ctrl + shift + F随时格式化代码。
-
现在我们要设置步骤8中的代码所使用的方法。此代码创build一个指示用户到新菜单的意图。 你将需要另外的XML和Java类。 另外,请记住将活动添加到清单。
public void informationMenu() { startActivity(new Intent("android.intent.action.INFOSCREEN")); }
-
最后,你需要设置一些代码,让用户知道麦克风是否可以使用。 将此代码粘贴到OnCreate方法的最后。
// Check to see if a recognition activity is present // if running on AVD virtual device it will give this message. The mic // required only works on an actual android device PackageManager pm = getPackageManager(); List activities = pm.queryIntentActivities(new Intent( RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0); if (activities.size() != 0) { voiceButton.setOnClickListener(this); } else { voiceButton.setEnabled(false); voiceButton.setText("Recognizer not present"); }
最后注意:语音识别不能在虚拟模拟器上工作,因为他们无法访问计算机上的麦克风。 语音识别只能与互联网连接。
这是约。 你的最终代码应该看起来像你的Java。
package com.example.com.tutorialthread; import java.util.ArrayList; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.View.OnClickListener; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.speech.RecognizerIntent; import android.support.v4.app.NavUtils; public class main extends Activity implements OnClickListener { public ListView mList; public Button speakButton; public static final int VOICE_RECOGNITION_REQUEST_CODE = 1234; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); speakButton = (Button) findViewById(R.id.btn_speak); speakButton.setOnClickListener(this); voiceinputbuttons(); } public void informationMenu() { startActivity(new Intent("android.intent.action.INFOSCREEN")); } public void voiceinputbuttons() { speakButton = (Button) findViewById(R.id.btn_speak); mList = (ListView) findViewById(R.id.list); } public 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, "Speech recognition demo"); startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE); } public void onClick(View v) { // TODO Auto-generated method stub startVoiceRecognitionActivity(); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == VOICE_RECOGNITION_REQUEST_CODE && resultCode == RESULT_OK) { // Fill the list view with the strings the recognizer thought it // could have heard ArrayList matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS); mList.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, matches)); // matches is the result of voice input. It is a list of what the // user possibly said. // Using an if statement for the keyword you want to use allows the // use of any activity if keywords match // it is possible to set up multiple keywords to use the same // activity so more than one word will allow the user // to use the activity (makes it so the user doesn't have to // memorize words from a list) // to use an activity from the voice input information simply use // the following format; // if (matches.contains("keyword here") { startActivity(new // Intent("name.of.manifest.ACTIVITY") if (matches.contains("information")) { informationMenu(); } } }
真的很好的教程。 做得好。
要完成一点点:
您需要为清单添加权限,如下所示
<uses-permission android:name="android.permission.RECORD_AUDIO" />
如果你有声音也不行
launchMode="singleInstance"
或launchMode="singleTask"
它看起来应该是“标准的”