Android上的Android加载快捷方式图标

时间:2015-03-09 08:25:46

标签: android android-intent

这就是我现在获取图标的方式:

    Intent shortcutIntent = getShortcutIntent();

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

我想从网上加载图标。这有可能吗?

0 个答案:

没有答案