带有KEYCODE_VOICE_ASSIST键捕获的Android启动器

时间:2015-08-21 00:38:58

标签: android android-launcher android-keypad android-tv nexus-player

我想知道是否可以使用自定义启动器,因为它似乎per the Android docs密钥代码未传递给应用程序。

因此,当按下具有它的遥控器或键盘上的麦克风按钮时,应用程序或自定义启动器如何反应如Google's Now Launcher打开语音搜索命令(不是这就是动作我想触发,但只是听按下按钮并做出相应的反应)。

1 个答案:

答案 0 :(得分:1)

您可以在onSearchRequested()

中覆盖Activity
@Override
public boolean onSearchRequested() {
    // return false if you just want to listen to the event
    // return true if you are overriding the system's functionality

}