6

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;
}
4

0 に答える 0