gpt4 book ai didi

java - Android api 29 如何在安装时自动在主屏幕上添加应用程序图标?

转载 作者:行者123 更新时间:2023-12-01 19:20:17 24 4
gpt4 key购买 nike

我希望我的应用程序在安装时自动在主屏幕上添加启动图标。

我已经尝试过:

ActivityMain 中的 addShortcut 方法

private void addShortcut() {

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_background));

addIntent
.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
addIntent.putExtra("duplicate", false);
getApplicationContext().sendBroadcast(addIntent);
}

AndroidManifest.xml

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

不幸的是,它不起作用,我认为这个方法有点过时了?谢谢!

最佳答案

无法直接响应您自己的应用程序首次安装时运行代码 - 仅当用户打开您的应用程序时。但是,如果用户从 Google Play 安装您的应用,通常会默认将该图标添加到主屏幕。

关于java - Android api 29 如何在安装时自动在主屏幕上添加应用程序图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59364837/

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