`

Android 轻松实现语音识别的完整代码[转]

 
阅读更多
苹果的iphone 有语音识别用的是Google 的技术,做为Google 力推的Android 自然会将其核心技术往Android 系统里面植入,并结合google 的云端技术将其发扬光大。

所以Google Voice Recognition在Android 的实现就变得极其轻松。
Android 轻松实现语音识别
语音识别,借助于云端技术可以识别用户的语音输入,包括语音控制等技术,下面我们将利用Google 提供的Api 实现这一功能。

功能点为:通过用户语音将用户输入的语音识别出来,并打印在列表上。

功能界面如下:

用户通过点击speak按钮显示界面:

用户说完话后,将提交到云端搜索:

在云端搜索完成后,返回打印数据:

 

 

* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.example.android.apis.app;

import com.example.android.apis.R;

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

import java.util.ArrayList;
import java.util.List;

/**
* Sample code that invokes the speech recognition intent API.
*/
public class VoiceRecognition extends Activity implements OnClickListener {

private static final int VOICE_RECOGNITION_REQUEST_CODE = 1234;

private ListView mList;

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

// Inflate our UI from its XML layout description.
setContentView(R.layout.voice_recognition);

// Get display items for later interaction
Button speakButton = (Button) findViewById(R.id.btn_speak);

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

// Check to see if a recognition activity is present
PackageManager pm = getPackageManager();
List activities = pm.queryIntentActivities(
new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
if (activities.size() != 0) {
speakButton.setOnClickListener(this);
} else {
speakButton.setEnabled(false);
speakButton.setText("Recognizer not present");
}
}

/**
* Handle the click on the start recognition button.
*/
public void onClick(View v) {
if (v.getId() == R.id.btn_speak) {
startVoiceRecognitionActivity();
}
}

/**
* Fire an intent to start the speech 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, "Speech recognition demo");
startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);
}

/**
* Handle the results from the recognition activity.
*/
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent 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));
}

super.onActivityResult(requestCode, resultCode, data);
}
}

分享到:
评论

相关推荐

    Android 轻松实现语音识别的完整代码

    ### Android轻松实现语音识别的完整代码解析 #### 一、简介 在移动应用开发领域,尤其是Android平台上,语音识别功能的应用越来越广泛。它不仅能够提升用户体验,还为开发者提供了丰富的可能性来创造更具交互性的...

    Android 轻松实现语音识别 实例.doc

    根据给定的文件信息,我们可以总结出以下关于“Android轻松实现语音识别”的相关知识点: ### 一、背景介绍 Google的语音识别技术被广泛应用在Android系统中,这得益于Google自身强大的技术支持以及对云端技术的...

    Android应用源码轻松实现语音识别.zip

    这份名为“Android应用源码轻松实现语音识别.zip”的资源提供了实现这一功能的源代码,适用于开发者参考和学习。下面将详细探讨Android语音识别的关键知识点。 1. **语音识别API**: - Google提供的`...

    安卓Android源码——轻松实现语音识别.zip

    本篇文章将详细探讨如何在Android源码中实现语音识别,让你轻松掌握这一技术。 首先,我们要了解Android系统的语音识别框架。Android系统内置了Google语音服务,它提供了语音识别的接口供开发者使用。这些接口主要...

    Android项目轻松实现语音识别.rar

    本资源“Android项目轻松实现语音识别.rar”显然包含了关于如何在Android应用中集成和使用语音识别技术的详细教程或示例代码。下面,我们将深入探讨Android语音识别的相关知识点。 1. **Android语音识别API** ...

    Android源码轻松实现语音识别

    通过以上步骤,你就可以在Android应用中实现基本的语音识别功能。在实际开发中,可能还需要考虑优化用户体验,比如添加提示音、处理连续语音输入等。此外,压缩包中的“资源说明.txt”文件可能包含更多关于这些源...

    安卓Android源码——轻松实现语音识别.rar

    对于压缩包中的"轻松实现语音识别"源码,可以详细研究其创建`SpeechRecognizer`对象、设置监听器、处理结果和错误的代码逻辑,理解其工作原理和最佳实践。 通过以上步骤,我们可以将安卓应用与语音识别功能结合...

    Android 轻松实现语音识别详解及实例代码

    Android中主要通过RecognizerIntent来实现语音识别,其实代码比较简单,但是如果找不到语音识别设备,就会抛出异常 ActivityNotFoundException,所以我们需要捕捉这个异常。而且语音识别在模拟器上是无法测试的,...

    android(安卓)语音识别代码

    根据提供的文件信息,我们可以深入探讨Android语音识别的相关知识点,包括其基本原理、代码解析以及如何在实际应用中实现语音识别功能。 ### Android语音识别的基本原理 Android系统内置了强大的语音识别功能,...

    Android源码轻松实现语音识别.zip

    在Android平台上实现语音识别是一项常见的功能,特别是在移动应用开发中,语音识别技术使得用户可以通过语音交互与应用程序进行沟通,极大地提升了用户体验。本教程将详细解析如何利用Android源码轻松实现这一功能。...

    android语音识别代码

    以下是对“android语音识别代码”这个主题的详细解释。 1. **Android语音识别API**: Android系统内置了Google语音服务,它提供了语音识别接口,可以将用户的语音输入转化为文本。主要涉及到的类有`...

    轻松实现语音识别.zip

    总的来说,“轻松实现语音识别.zip”可能包含了实现Android语音识别的相关示例代码或指南,帮助开发者快速上手这一功能,让应用更加智能化和人性化。通过不断学习和实践,开发者可以进一步提升语音识别功能的准确性...

    轻松实现语音识别(Android).zip

    在Android平台上,语音识别...综上所述,Android平台提供了强大的语音识别功能,开发者可以通过SpeechRecognizer类轻松实现这一特性。结合合适的UI设计和用户体验优化,语音识别能极大地提升移动应用的易用性和互动性。

    安卓语音识别文本朗读相关-三个android语音识别例程mystt.rar

    在这个名为“安卓语音识别文本朗读相关-三个android语音识别例程mystt.rar”的压缩包中,包含了一些用于理解和实践这两种技术的源代码示例。虽然无法一一验证每个示例的可用性,但它们可以作为开发者学习和参考的...

    轻松实现语音识别(实用1).zip

    本资源"轻松实现语音识别(实用1).zip"似乎是一个关于如何在Android平台上实现语音识别的教程或代码示例。以下是这个主题中的关键知识点: 1. **语音识别基础**:语音识别是通过将音频信号转化为文本的过程。它涉及...

Global site tag (gtag.js) - Google Analytics