如何将快速启动热键分配给Android上的特定应用程序

时间:2013-04-05 01:01:23

标签: android

我正在尝试为我的应用设置快速启动快捷键。

我可以使用以下代码打开“快速启动”屏幕:

launchIntent = new Intent();
launchIntent.setAction("android.intent.action.MAIN");
launchIntent.setPackage("com.android.settings");
launchIntent.setComponent(new ComponentName("com.android.settings", "com.android.settings.quicklaunch.QuickLaunchSettings"));
startActivityForResult(launchIntent,0);

屏幕如下所示:Quick Launch Screenshot。您可以将应用分配给,例如“a”,当您按下find-a时,它将启动该应用。

我真正想做的是以编程方式为特定应用程序分配热键,但我无法弄清楚如何执行此操作。这有可能,怎么样?

0 个答案:

没有答案