7

我尝试了下面的代码以动态更改应用程序图标但没有用。

显现:

<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 应用程序)时,我都需要在应用程序图标上显示计数器。那么如何在android中动态获取应用程序图标和设置图标???

4

1 回答 1

3

您不能动态修改应用程序图标。Gmail 不会动态修改应用程序图标。

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

于 2013-06-17T12:22:02.387 回答