アプリケーションアイコンを動的に変更するために以下のコードを試しましたが、使用できません。
マニフェスト:
<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でアプリアイコンを取得してアイコンを動的に設定するにはどうすればよいですか???