如何在自定义启动器的主屏幕上以编程方式添加消息应用程序图标?

时间:2016-09-01 10:16:13

标签: android

如何在自定义启动器的主屏幕上添加应用程序图标。在我的自定义启动器中,只有一个按钮显示哪个用于在网格视图中打开所有应用程序窗口。但我想在主页上添加更多应用程序图标。

1 个答案:

答案 0 :(得分:2)

<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />

使用上述权限您可以编写以下代码

 Intent shortcutIntent = new Intent();
 shortcutIntent.setClassName("packageName", "className");
 Intent addIntent = new Intent();
 addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
 addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "shortcut_name");
 addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
 Intent.ShortcutIconResource.fromContext(context, R.drawable.icon));
 addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
 context.sendBroadcast(addIntent);