Android Marshmallow (デュアル SIM 用のカスタム ROM) を搭載したすべての Huawei、Honor、Xiaomi では、通知の小さなアイコンsetSmallIcon
は常に既定のアプリ アクティビティ アイコンに設定されています。大きなアイコンsetLargeIcon
は正常に機能しています。API 21 と 23 をテストしました。動作するコードはありますか?
test(R.drawable.ic_mynotificon, "Test");
private void test(int resID, String txt)
{
final NotificationManagerCompat mNotificationManager = NotificationManagerCompat.from(getContext());
final NotificationCompat.Builder notif_builer = new NotificationCompat.Builder(getContext())
.setContentTitle(txt)
.setContentText(txt)
.setSmallIcon(resID)
.setDefaults(NotificationCompat.DEFAULT_ALL);
mNotificationManager.notify(999, notif_builer.build());
return;
}