Android创建快捷方式图标

一个方法,在APP需要的时候调用该方法即可:

public void createShortcutIconInHomeScreen() {Intent addIntent = new Intent();addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent());addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "快捷方式名字");// 不重复创建快捷方式图标。addIntent.putExtra("duplicate", false);// R.drawable.app_logo 快捷方式的图标icon。addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.drawable.app_logo));addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");getApplicationContext().sendBroadcast(addIntent);}

,只要笑一笑,没什么事请过不了

Android创建快捷方式图标

相关文章:

你感兴趣的文章:

标签云: