我们现在通过一个小的示例程序展示如何在应用中使用语音搜索。
我们的应用需要完成以下任务:
- 收到语音识别请求
- 检查语音识别应用的可用性
- 如果语音识别可用,然后调用意图并接收结果
- 如果语音识别不可用,然后会显示一个安装 Google 语音搜索的会话,并将用户重定向至 Google Play。
首先,我们需要创建一个类,为语音识别实现逻辑。 调用类 SpeechRecognitionHelper,此时我们需要声明一个静态的公共函数 run(),该函数将收到一个启动识别的请求:
01 |
/** |
02 |
* A helper class for speech recognition
|
03 |
*/
|
04 |
public class SpeechRecognitionHelper {
|
05 |
06 |
/** |
07 |
* Running the recognition process. Checks availability of recognition Activity,
|
08 |
* If Activity is absent, send user to Google Play to install Google Voice Search.
|
09 |
* If Activity is available, send Intent for running.
|
10 |
*
|
11 |
* @param callingActivity = Activity, that initializing recognition process
|
12 |
*/
|
13 |
public static void run(Activity callingActivity) {
|
14 |
// check if there is recognition Activity
|
15 |
if (isSpeechRecognitionActivityPresented(callingActivity) == true ) {
|
16 |
// if yes – running recognition
|
17 |
startRecognition(callingActivity);
|
18 |
} else {
|
19 |
// if no, then showing notification to install Voice Search
|
20 |
Toast.makeText(callingActivity, "In order to activate speech recognition you must install \"Google Voice Search\"" , Toast.LENGTH_LONG).show();
|
21 |
// start installing process
|
22 |
installGoogleVoiceSearch(callingActivity);
|
23 |
}
|
24 |
}
|
25 |
} |
如您所见,除 run() 函数之外,我们还需要执行三个函数:
- isSpeechRecognitionActivityPresented — 检查语音识别应用是否存在于系统中
- installGoogleVoiceSearch — 初始化 Google 语音搜索安装进程
- startRecognition — 准备适合的意图并运行识别
为了检查设备是否有语音识别应用,我们可以使用类 PackageManager 中的 queryIntentActivities 方法。 该方法列出了可以处理指定意图的各种活动。 为了接收 PackageManager 的一个实例,我们可以使用 getPackageManager。
我们的代码如下所示:
isSpeechRecognitionActivityPresented
01 |
/** |
02 |
* Checks availability of speech recognizing Activity
|
03 |
*
|
04 |
* @param callerActivity – Activity that called the checking
|
05 |
* @return true – if Activity there available, false – if Activity is absent
|
06 |
*/
|
07 |
private static boolean isSpeechRecognitionActivityPresented(Activity callerActivity) {
|
08 |
try {
|
09 |
// getting an instance of package manager
|
10 |
PackageManager pm = callerActivity.getPackageManager();
|
11 |
// a list of activities, which can process speech recognition Intent
|
12 |
List activities = pm.queryIntentActivities( new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
|
13 |
14 |
if (activities.size() != 0) { // if list not empty
|
15 |
return true ; // then we can recognize the speech
|
16 |
}
|
17 |
} catch (Exception e) {
|
18 |
19 |
}
|
20 |
21 |
return false ; // we have no activities to recognize the speech
|
22 |
}
|
现在执行 startRecognition 函数。 该函数为启动语音识别活动提供适合的意图。 如欲了解有关该过程的详细信息,请查看 文档页。
源代码:
01 |
/**
|
02 |
* Send an Intent with request on speech
|
03 |
* @param callerActivity - Activity, that initiated a request
|
04 |
*/
|
05 |
private static void startRecognitionActivity(Activity callerActivity) {
|
06 |
07 |
// creating an Intent with “RecognizerIntent.ACTION_RECOGNIZE_SPEECH” action
|
08 |
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
|
09 |
10 |
// giving additional parameters:
|
11 |
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Select an application" ); // user hint
|
12 |
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH); // setting recognition model, optimized for short phrases – search queries
|
13 |
intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 1); // quantity of results we want to receive
|
14 |
//choosing only 1st - the most relevant |
15 |
16 |
// start Activity ant waiting the result
|
17 |
ownerActivity.startActivityForResult(intent, SystemData.VOICE_RECOGNITION_REQUEST_CODE);
|
18 |
}
|
最后,我们需要执行 installGoogleVoiceSearch。 该函数将会显示出一个会话,询问用户是否需要安装 Google 语音搜索,如果用户同意,则将其转至 Google Play。
01 |
/** |
02 |
* Asking the permission for installing Google Voice Search.
|
03 |
* If permission granted – sent user to Google Play
|
04 |
* @param callerActivity – Activity, that initialized installing
|
05 |
*/
|
06 |
private static void installGoogleVoiceSearch(final Activity ownerActivity) {
|
07 |
08 |
// creating a dialog asking user if he want
|
09 |
// to install the Voice Search
|
10 |
Dialog dialog = new AlertDialog.Builder(ownerActivity)
|
11 |
.setMessage( "For recognition it’s necessary to install \"Google Voice Search\"" ) // dialog message
|
12 |
.setTitle( "Install Voice Search from Google Play?" ) // dialog header
|
13 |
.setPositiveButton( "Install" , new DialogInterface.OnClickListener() { // confirm button
|
14 |
15 |
// Install Button click handler
|
16 |
@Override
|
17 |
public void onClick(DialogInterface dialog, int which) {
|
18 |
try {
|
19 |
// creating an Intent for opening applications page in Google Play
|
20 |
// Voice Search package name: com.google.android.voicesearch
|
21 |
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse( "market://details?id=com.google.android.voicesearch" ));
|
22 |
// setting flags to avoid going in application history (Activity call stack)
|
23 |
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
|
24 |
// sending an Intent
|
25 |
ownerActivity.startActivity(intent);
|
26 |
} catch (Exception ex) {
|
27 |
// if something going wrong
|
28 |
// doing nothing
|
29 |
}
|
30 |
}})
|
31 |
32 |
.setNegativeButton( "Cancel" , null) // cancel button
|
33 |
.create();
|
34 |
35 |
dialog.show(); // showing dialog
|
36 |
}
|
大致就是这样。 我们运行语音识别活动。 然后请求用户的许可,安装语音搜索并在取得用户同意之后将其转至 Google Play。 我们还需要做的一件事就是收集语音识别的结果。
我们使用 startActivityForResult 函数发送一个请求,收集已启动活动的结果。 我们还需要在我们的意图调用程序活动中重新定义一个OnActivityResult 方法。 按照以下方式进行定义:
01 |
// Activity Results handler |
02 |
@Override
|
03 |
public void onActivityResult( int requestCode, int resultCode, Intent data) {
|
04 |
05 |
// if it’s speech recognition results
|
06 |
// and process finished ok
|
07 |
if (requestCode == SystemData.VOICE_RECOGNITION_REQUEST_CODE && resultCode == RESULT_OK) {
|
08 |
09 |
// receiving a result in string array
|
10 |
// there can be some strings because sometimes speech recognizing inaccurate
|
11 |
// more relevant results in the beginning of the list
|
12 |
ArrayList matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
|
13 |
14 |
// in “matches” array we holding a results... let’s show the most relevant
|
15 |
if (matches.size() > 0) Toast.makeText( this , matches.get(0), Toast.LENGTH_LONG).show();
|
16 |
}
|
17 |
18 |
super.onActivityResult(requestCode, resultCode, data);
|
19 |
}
|
现在我们已经准备就绪
借助已创建的类 SpeechRecognitionHelper,我们只需调用一个函数 run() 就能执行一个语音识别请求。
此时只需在我们的项目中添加该类并在需要的位置中调用运行函数就能添加一个识别功能。 然后为发起识别请求的活动重新定义 onActivityResult 方法并执行处理文本结果。
如欲了解更多信息,请查看 Android 开发人员 网站。 这里的一些正确 示例 展示了如何实现语音识别,更重要的是,如何获取可用的语言列表。 如果您想要识别除用户默认位置之外的一种语言,您就需要使用该列表。
如果您想快速地将语音输入集成到您的应用中,您可以下载该代码并将其用于 SpeechRecognitionHelper 类
相关推荐
由于最近在做智能家居方向的产品,需要在App上对机器人实现一个简单的语音控制,于是开始寻找相应的解决方案,由于某种原因,google自己的语音识别API并不能在国内发挥作用,所以我们选择国内的科大讯飞语音识别服务...
本示例项目“android语音识别demo”采用的是科大讯飞(IFlytek)的API,这是一个在中国广泛使用的语音识别服务提供商。下面将详细介绍这个demo的实现原理和关键知识点。 1. **科大讯飞API**:科大讯飞提供了多种...
本资源“Android高级应用源码-三个android语音识别例程mystt.zip”提供了一个宝贵的参考资料,包含了三个不同的Android语音识别示例,帮助开发者深入理解如何集成和优化这一特性。 首先,我们要了解Android系统内置...
本资源"安卓开发-三个android语音识别例程mystt.zip"提供的是三个不同的Android语音识别示例项目,旨在帮助开发者理解和实践如何在Android应用程序中集成语音识别功能。以下是对这三个示例项目的详细解析: 1. **...
本示例“android语音识别demo”是基于百度语音识别SDK开发的,旨在帮助开发者快速理解和集成这一功能。 首先,我们要理解的是百度语音识别SDK。这是一个由百度提供的服务,它提供了丰富的语音识别能力,包括离线...
本教程将深入探讨三种不同的Android语音识别实现方法:通过Intent调用系统服务、通过Service进行后台识别以及自定义识别流程。 1. **通过Intent调用系统服务** Android系统内置了语音识别功能,开发者可以通过...
在本篇Unity3D教程中,我们将探讨如何在Unity3D项目中调用Android设备的内置语音识别功能。首先,我们需要了解的是,Android系统已经集成了Google的语音识别服务,因此开发者无需额外安装第三方库即可实现语音识别。...
在这个名为“安卓语音识别文本朗读相关-三个android语音识别例程mystt.rar”的压缩包中,包含了一些用于理解和实践这两种技术的源代码示例。虽然无法一一验证每个示例的可用性,但它们可以作为开发者学习和参考的...
本文将深入分析一个示例项目——《Android轻松实现语音识别的完整代码》,该项目旨在展示如何在Android应用中集成语音识别功能。 #### 二、项目背景与意义 本项目基于Apache License 2.0协议发布,允许开发者在遵循...
在Android平台上,语音识别与搜索是提升用户体验的重要技术。通过集成语音识别功能,用户可以通过语音...在"android语音识别+语音搜索源码"中,我们可以找到一个完整的实现示例,这对于理解和应用这些技术非常有帮助。
本压缩包文件“android语音识别源文件”正是为Android语音开发者量身打造的资源,它包含了实现语音识别功能所需的源代码和相关文档,帮助开发者快速理解和应用这些技术。 首先,我们需要了解Android系统的语音识别...
以下是对“android语音识别代码”这个主题的详细解释。 1. **Android语音识别API**: Android系统内置了Google语音服务,它提供了语音识别接口,可以将用户的语音输入转化为文本。主要涉及到的类有`...
在Android平台上开发一款语音识别计算器,我们可以利用科大讯飞提供的API来实现这一创新功能。本文将深入探讨如何构建这样一个应用,以及涉及的关键技术点。 首先,我们需要了解科大讯飞API,它是一个强大的语音...
"Android语音识别Demo"就是一个展示如何在Android应用中集成和使用语音识别技术的示例项目。这个Demo提供了直观的代码示例,开发者可以直接运行并学习。 在Android系统中,Google提供的SpeechRecognizer类是实现...
百度语音识别集成示例(eclipse) 原项目为AndroidStudio中gradle格式的,且依赖android-support-v7.jar; 现在改为可以在eclipse的较低版本(android-support-v4.jar)中运行。
下面我们将详细探讨Android语音识别的实现原理和关键步骤。 首先,我们要了解Android系统内置的语音识别服务。Android从API Level 8(即Android 2.2 Froyo)开始提供了SpeechRecognizer类,这是系统提供的用于语音...
1. **Android语音识别API**:Android系统提供了内置的`SpeechRecognizer`类,它是进行语音识别的主要接口。开发者可以通过创建`SpeechRecognizer`对象,设置监听器(`RecognitionListener`),然后调用`start...
本文将深入探讨Android语音识别技术,包括其工作原理、API使用、集成到应用程序的方法以及一些常见的实践策略。 Android语音识别是基于Google的语音服务,该服务能够将用户的语音输入转化为文本,进而执行相应的...