我想知道是否可以使用自定义启动器,因为它似乎per the Android docs密钥代码未传递给应用程序。
因此,当按下具有它的遥控器或键盘上的麦克风按钮时,应用程序或自定义启动器如何反应如Google's Now Launcher打开语音搜索命令(不是这就是动作我想触发,但只是听按下按钮并做出相应的反应)。
答案 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
}