1

私は次の方法を使用しています:

private void placeShortcutIcon(){

    Intent shortcutIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + mAppData.packageName));
    shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    Intent addIntent = new Intent();
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, mAppData.title);

    Intent.ShortcutIconResource shortcutIconResource = Intent.ShortcutIconResource.fromContext(MainApplication.getAppContext(), R.drawable.ic_launcher);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, shortcutIconResource);
    addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");

    MainApplication.getAppContext().sendBroadcast(addIntent);
}

IntentService からショートカットをインストールするときに潜在的な問題はありますか?

4

0 に答える 0