0

내 앱의 알림 아이콘을 표시하려고합니다. 모든 OS 버전과 장치의 경우는 상태 표시 줄에삼성 Android 7에 알림 아이콘이 표시되지 않습니다.

안드로이드 7. 삼성 장치를 제외하고

enter image description here

알림 아이콘을 잘 노력하고 있습니다. enter image description here

다음은 실제로 표시되는 알림 아이콘입니다. enter image description here

아이콘이 완전히 흰색이므로 투명합니다. 여기서는 보이지 않습니다.

다음은 아이콘을 표시하는 데 사용하는 코드입니다.

Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); 
NotificationCompat.Builder notificationBuilder = 
       new NotificationCompat.Builder(getApplicationContext()) 
         .setSmallIcon(R.drawable.ic_comment) 
         .setContentTitle(messageMap.get(MESSAGE_KEY_NOTIFICATION)) 
         .setSubText(getTitle(eventType)) 
         .setAutoCancel(true) 
         .setColor(getResources().getColor(R.color.primary_blue)) 
         .setSound(defaultSoundUri) 
         .setContentIntent(getPendingIntent(eventType)) 
         .setGroup(GROUP_ID_TEAM_INVITATION); 
+0

아이콘 이미지를 보려면 클릭하십시오. – pratik03

+0

알림을 왜 검열합니까? ** 검열해도 쉽게 볼 수 있습니다 !! ** – Edric

답변

0

문제를 일으키는 아이콘이었습니다. 아이콘이 적절한 크기가 아닙니다.

관련 문제