已发布的应用制作 2 个快捷方式和调试 1
Published app making 2 shortcuts and debug 1
我现在已经发布了我的应用程序,发现它创建了两个快捷方式图标,而当我通过 android studio 安装时,它只创建了一个快捷方式。我添加了重复的 false 并且 sharedpreference 也被用来检查是否创建了图标。为什么应用程序表现不同,我现在该如何解决?这是我创建快捷方式的代码。
public void createShortCut() {
SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(StartupActivity.this).edit();
editor.putBoolean("shortcut", true).apply();
Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
shortcutintent.putExtra("duplicate", false);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Smart App");
Parcelable icon = Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.mipmap.ic_launcher);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(getApplicationContext(), SplashScreen.class));
sendBroadcast(shortcutintent);
}
在调用上述方法之前,我有以下代码在 activity 开始时运行。
if (!sharedPreferences.getBoolean("shortcut", false)) {
createShortCut();
}
当您从 Android Studio 安装时(直接从 .apk),没有快捷方式。但是,从 Google Play 商店安装的应用有时会自动 在安装后创建快捷方式。
因此,当用户从 Play 商店安装您的应用时,会创建两个快捷方式,一个来自您的应用,一个来自安装。
编辑:此解决方案可能对您有用:How to detect shortcut in Home screen
我现在已经发布了我的应用程序,发现它创建了两个快捷方式图标,而当我通过 android studio 安装时,它只创建了一个快捷方式。我添加了重复的 false 并且 sharedpreference 也被用来检查是否创建了图标。为什么应用程序表现不同,我现在该如何解决?这是我创建快捷方式的代码。
public void createShortCut() {
SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(StartupActivity.this).edit();
editor.putBoolean("shortcut", true).apply();
Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
shortcutintent.putExtra("duplicate", false);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Smart App");
Parcelable icon = Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.mipmap.ic_launcher);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(getApplicationContext(), SplashScreen.class));
sendBroadcast(shortcutintent);
}
在调用上述方法之前,我有以下代码在 activity 开始时运行。
if (!sharedPreferences.getBoolean("shortcut", false)) {
createShortCut();
}
当您从 Android Studio 安装时(直接从 .apk),没有快捷方式。但是,从 Google Play 商店安装的应用有时会自动 在安装后创建快捷方式。
因此,当用户从 Play 商店安装您的应用时,会创建两个快捷方式,一个来自您的应用,一个来自安装。
编辑:此解决方案可能对您有用:How to detect shortcut in Home screen