Android实现语音识别代码

作者:hebedich 时间:2022-06-03 03:26:33 

苹果的iphone 有语音识别用的是Google 的技术,做为Google 力推的Android 自然会将其核心技术往Android 系统里面植入,并结合google 的云端技术将其发扬光大。 所以Google Voice Recognition在Android 的实现就变得极其轻松。

Android实现语音识别代码 

语音识别,借助于云端技术可以识别用户的语音输入,包括语音控制等技术,下面我们将利用Google 提供的Api 实现这一功能。 功能点为:通过用户语音将用户输入的语音识别出来,并打印在列表上。 功能界面如下:

Android实现语音识别代码 

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

Android实现语音识别代码

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

Android实现语音识别代码

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

Android实现语音识别代码


* 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,语音识别
0
投稿

猜你喜欢

  • 在Visual Studio上构建C++的GUI框架wxWidgets的开发环境

    2023-04-12 01:02:06
  • Java实现双色球抽奖随机算法示例

    2023-04-25 12:15:38
  • 人脸认证源码faceIdentify详解

    2023-05-19 09:57:25
  • Java实现贪吃蛇游戏(1小时学会)

    2023-06-29 00:54:02
  • Android clipChildren属性实例详解

    2022-12-29 02:35:50
  • Jetpack Compose自定义动画与Animatable详解

    2021-07-04 20:26:08
  • Dubbo retries 超时重试机制的问题原因分析及解决方案

    2023-11-29 08:22:38
  • springboot+thymeleaf 文件上传功能的实现代码

    2023-11-25 05:08:59
  • Hibernate实现批量添加数据的方法

    2023-11-29 08:53:56
  • postman测试传入List<String>参数方式

    2022-10-13 01:34:40
  • Java虚拟机内存结构及编码实战分享

    2023-11-29 13:47:47
  • Springboot+SpringSecurity+JWT实现用户登录和权限认证示例

    2021-11-14 11:06:11
  • SpringBoot常用注解详细整理

    2022-12-15 18:53:01
  • C#使用SQL Dataset数据集代码实例

    2023-02-24 08:23:07
  • android 点击EditText始终不弹出软件键盘实现代码

    2022-05-23 06:37:19
  • C#基于NPOI生成具有精确列宽行高的Excel文件的方法

    2022-12-18 13:32:46
  • Android RecyclerView添加上拉加载更多功能

    2022-08-02 00:03:51
  • asp.net实现遍历Request的信息操作示例

    2022-11-15 23:15:18
  • Unity 实现给物体替换材质球

    2023-06-28 05:28:24
  • c# 编写一个轻量级的异步写日志的实用工具类(LogAsyncWriter)

    2021-11-23 01:56:14
  • asp之家 软件编程 m.aspxhome.com