Android提供语音搜索功能


只需要在searchable配置文件中写入下面的代码,很简单:

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:Android="http://schemas.android.com/apk/res/android"
    android:label="@string/search_label"
    android:hint="@string/search_hint"
    android:voiceSearchMode="showVoiceSearchButton|launchRecognizer" >
</searchable>

注意:

一定要认真考虑是否语音搜索是否适合你的应用程序。要充分的测试你的语言识别,确保能够识别你的查询类型!切记,切记!

相关内容