[Android] - 안드로이드 Notification, 상태바 알림 사용예제
Android Java 2013. 8. 29. 17:30private static Notification noti;
private static final int notiId = 1;
noti = new NotificationCompat.Builder(ncontext)
.setSmallIcon(R.drawable.btn_star)
.setContentTitle(title)
.setContentText(content)
.setTicker("알람이 동작되었습니다.")
.setContentIntent(pintent)
.setAutoCancel(false)
.build();
noti.flags |= Notification.FLAG_NO_CLEAR; // 지우기 버튼 눌렀을때 지워지지 않게
nm.notify(notiId, noti); // 알림 동작
nm.cancel(notiId); // 알림 제거
'Android Java' 카테고리의 다른 글
[Android] - 안드로이드 화면 전환 슬라이드, Activity Slide (0) | 2013.09.11 |
---|---|
[Android] - 안드로이드 상태바 접어올리기 (0) | 2013.09.10 |
[Android] - Service 구현시 메모리 정리시 서비스 죽을때 대처법 (0) | 2013.07.23 |
[Android] - 안드로이드 현재 설정된 언어 가져오기 (0) | 2013.07.15 |
[Android] - 안드로이드 ImageView 리사이징 함수 (0) | 2013.07.05 |