如何以编程方式在android中添加主屏幕快捷方式

时间:2013-06-01 13:31:52

标签: android homescreen

当我开发一个Android应用程序时出现了这个问题。我想到分享我在开发过程中收集的知识。

1 个答案:

答案 0 :(得分:67)

Android为我们提供了一个意图类com.android.launcher.action.INSTALL_SHORTCUT,可用于向主屏幕添加快捷方式。在下面的代码片段中,我们使用名称HelloWorldShortcut创建活动MainActivity的快捷方式。

首先我们需要向android manifest xml添加权限INSTALL_SHORTCUT

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

addShortcut()方法在主屏幕上创建一个新的快捷方式。

private void addShortcut() {
    //Adding shortcut for MainActivity 
    //on Home screen
    Intent shortcutIntent = new Intent(getApplicationContext(),
            MainActivity.class);

    shortcutIntent.setAction(Intent.ACTION_MAIN);

    Intent addIntent = new Intent();
    addIntent
            .putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "HelloWorldShortcut");
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
            Intent.ShortcutIconResource.fromContext(getApplicationContext(),
                    R.drawable.ic_launcher));

    addIntent
            .setAction("com.android.launcher.action.INSTALL_SHORTCUT");
    addIntent.putExtra("duplicate", false);  //may it's already there so don't duplicate
    getApplicationContext().sendBroadcast(addIntent);
}

注意我们如何创建保存目标活动的shortcutIntent对象。此intent对象将作为EXTRA_SHORTCUT_INTENT添加到另一个intent中。

最后我们广播新的意图。这会添加一个名称为的快捷方式 由EXTRA_SHORTCUT_NAME定义的EXTRA_SHORTCUT_ICON_RESOURCE和图标。

还要使用此代码以避免多个快捷方式:

  if(!getSharedPreferences(Utils.APP_PREFERENCE, Activity.MODE_PRIVATE).getBoolean(Utils.IS_ICON_CREATED, false)){
          addShortcut();
          getSharedPreferences(Utils.APP_PREFERENCE, Activity.MODE_PRIVATE).edit().putBoolean(Utils.IS_ICON_CREATED, true);
      }