こんにちは、アプリケーションへのアプリケーション ショートカットを作成しています。私のアプリケーションのショートカットはホーム画面の前にあります。その時点でアプリケーションを閉じると、アプリケーションのショートカットを閉じる/削除する方法。ソースコードが必要です。誰か助けてください。ありがとう。
コードはこちら。助けて。
Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
shortcutintent.putExtra("duplicate", false);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
Parcelable icon = Intent.ShortcutIconResource.fromContext(
getApplicationContext(), R.drawable.icon);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
new Intent(getApplicationContext() , FirstScreenActivity.class));
sendBroadcast(shortcutintent);