본문 바로가기
프로그래밍/Android(Java)

[Android] Notification 상태바, 커스텀

by 쿼카퀀트 2019. 9. 29.
728x90
NotificationManager NM= getSystemService(Context.Notification_Service);

Notification.Builder builder=new Notification.Builder(MainActivity.this);
builder.setSmallIcon(/*icon(R)*/);
builder.setTicker(/*text*/);
builder.setWhen(/*timing*/);

Notification noti=builder.build();
NM.notify(1,noti);
728x90

댓글