扩展Android的语音搜索应用

时间:2010-10-29 21:20:47

标签: android

是否可以扩展语音搜索应用?我知道我可以在自己的应用程序中添加一个按钮来启动语音识别对话框,但我想知道是否可以扩展在长按物理“搜索”键时自动启动的语音搜索应用程序。

send text to [contact] [message]
listen to [artist/song/album]
call [business]
call [contact]
send email to [contact] [message]
go to [website]
note to self [note]
navigate to [location/business name]
directions to [location/business name]
map of [location]

我基本上想将自己的动作添加到上面的列表中。

这可能还是我必须创建自己的?

2 个答案:

答案 0 :(得分:2)

总之,没有。该应用程序没有您要查找的扩展点。您必须完全编写自己的应用程序,这是其他人所做的事情。

答案 1 :(得分:0)

处理语音搜索

的简单方法

第1步 点击按钮

调用此方法
public void startVoiceRecognition() {
    Intent intent = new Intent("android.speech.action.RECOGNIZE_SPEECH");
    intent.putExtra("android.speech.extra.LANGUAGE_MODEL", "free_form");
    intent.putExtra("android.speech.extra.PROMPT", "Speak Now");
    this.mContainerActivity.startActivityForResult(intent, 3012);
}

第2步 覆盖onActivityResult方法

@ Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == 3012 && resultCode == RESULT_OK) {
        ArrayList < String > matches = data.getStringArrayListExtra("android.speech.extra.RESULTS");
        String result= matches.get(0);
        //Consume result 
        edittext.setText(result);
    }
}

多数,完成