How to Assign a Quick Launch Hotkey to a Specific App on Android -
i trying set quicklaunch shortcut key app.
i able bring quick launch screen following code:
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);
the screen looks this: quick launch screenshot. can assign app to, example, "a", , when press find-a, launch app.
what i'd programmatically assign hotkey specific app, cannot figure out how this. possible, , how?
Comments
Post a Comment