如何在android中动态更改APP图标

时间:2013-06-17 11:44:56

标签: android

我尝试过以下代码,以便动态更改应用程序图标,但没有用。

清单:

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

类别:

Intent myLauncherIntent = new Intent();
myLauncherIntent.setClassName("your.package.name", "YourLauncherActivityName");
myLauncherIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, myLauncherIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Application Name");
intent.putExtra
       (
        Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
        Intent.ShortcutIconResource.fromContext
                                    (
                                         getApplicationContext(),
                                         R.drawable.app_icon
                                    )
       );
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");

getApplicationContext().sendBroadcast(intent);

每当收到任何传入消息时,我都需要在应用程序图标上显示计数器 我的应用程序喜欢gmail app。又怎样 我能获得app icon&amp;在android ???中动态设置图标

1 个答案:

答案 0 :(得分:3)

您无法动态修改应用图标。 Gmail不会动态修改应用图标。

主屏幕 - 作为实际显示这些内容的应用 - 可以选择将徽章应用于某些应用图标。您可以创建一个看起来像带有徽章的图标的应用程序小部件。