gpt4 book ai didi

java - 安装后如何添加应用程序的主屏幕快捷方式

转载 作者:行者123 更新时间:2023-12-02 01:49:07 25 4
gpt4 key购买 nike

在启动应用程序之前,如何将应用程序的快捷方式添加到 Android 主屏幕?

我需要在安装应用程序后立即添加它。

最佳答案

如果您在安装应用程序自动创建快捷方式后在 Google Play 商店中发布应用程序,但如果您想处理 Android 为我们提供的 Intent 类 com.android.launcher.action.INSTALL_SHORTCUT ,可用于向主屏幕。在下面的代码 fragment 中,我们创建了一个名为 HelloWorldShortcut 的 Activity MainActivity 的快捷方式。

首先,我们需要向 Android list 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);
}

注意我们如何创建保存目标 Activity 的快捷 Intent 对象。该 Intent 对象作为 EXTRA_SHORTCUT_INTENT 添加到另一个 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);
}

关于java - 安装后如何添加应用程序的主屏幕快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53255004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com