안드로이드 Notification Icon 생성 예제 지난 글 FCM을 이용해 안드로이드 앱으로 메시지 전송 (http://zeany.net/28) 에서 클라우드 메시지를 기기의 작업 표시줄에 보여줄 때 아이콘이 아래처럼 흰색 네모로 보이는 분들이 대부분 일거라고 생각합니다. 소스를 보면 Launcher Icon을 보여주도록 설정된 것이 보이지만, 그렇게 동작하지는 않습니다. 1 2 3 4 5 6 7 NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) .setSmallIcon(R.mipmap.ic_launcher) .setContentTitle(title) .setContentText(message) .setAutoCancel(true) .setSound(.. 더보기 이전 1 ··· 18 19 20 21 22 23 24 ··· 49 다음