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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -