我尝试了下面的代码以动态更改应用程序图标但没有用。
显现:
<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中动态获取应用程序图标和设置图标???