如何在 android 上正确创建快捷方式?

How to properly create a shortcut on android?

我试过这段代码并在清单中添加了创建快捷方式的权限,但仍然无法创建快捷方式。代码主要在activity.

//设置应用程序的快捷方式 如果(!getSharedPreferences("APP_PREFERENCE", Activity.MODE_PRIVATE).getBoolean("IS_ICON_CREATED", false)) { 设置图标(); getSharedPreferences("APP_PREFERENCE", Activity.MODE_PRIVATE).edit().putBoolean("IS_ICON_CREATED", true).commit(); Toast.makeText(getApplicationContext(), "done", Toast.LENGTH_LONG).show();

        }

Android 为我们提供了一个 intent class com.android.launcher.action.INSTALL_SHORTCUT,可用于将快捷方式添加到主屏幕。在下面的代码片段中,我们创建了一个 activity MainActivity 的快捷方式,名称为 HelloWorldShortcut。

首先我们需要将权限 INSTALL_SHORTCUT 添加到 android 清单 xml。

<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 对象 activity。此意图对象作为 EXTRA_SHORTCUT_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);
      }

我最终使用这段代码创建了快捷方式。而且效果很好 如果创建了快捷方式,它还会检查 snd save is preferences。在清单中添加了用于接收的意图 activity 与启动画面的创建者相同。

<activity android:name=".ShortCutActivity" 
android:label="@string/shortcut_label"> 
<intent-filter> 

    <action android:name="android.intent.action.CREATE_SHORTCUT" />
     <category android:name="android.intent.category.DEFAULT" /> 
     </intent-filter> 
     </activity>

然后使用此代码创建快捷方式

private void 

    createShortcutIcon() {
            // Checking if ShortCut was already added

            SharedPreferences sharedPreferences = getPreferences(MODE_PRIVATE);

            boolean shortCutWasAlreadyAdded = sharedPreferences.getBoolean(
                    PREF_KEY_SHORTCUT_ADDED, false);

            if (shortCutWasAlreadyAdded)
                return;

            Intent shortcutIntent = new Intent(getApplicationContext(),
                    SplashScreen.class);
            shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            Intent addIntent = new Intent();
            addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
            addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "YourAppName");
            addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
                    Intent.ShortcutIconResource.fromContext(
                            getApplicationContext(), R.drawable.ic_launcher));
            addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
            getApplicationContext().sendBroadcast(addIntent);

            // Remembering that ShortCut was already added
            SharedPreferences.Editor editor = sharedPreferences.edit();
            editor.putBoolean(PREF_KEY_SHORTCUT_ADDED, true);
            editor.commit();
        }