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

[Android] 간단한 커스텀 Notification

by 쿼카퀀트 2019. 9. 29.
728x90

Notification 생성까지는 동일

RemoteViews view=new RemoteViews(MainActivity.this.getPackageName(),R.layout./*띄울 레이아웃 주소*/);
view.setImageViewResource(/*이미지 주소*/);
view.setTextViewText(/*text*/);

Notification noti=new Notification.Builder(getApplicationCOntext).setContent(view).build();
manager.notify(1,noti);
728x90

댓글