Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- afterdelay
- 신도림 테크노마트
- LG유플러스
- 보라카이
- Xcode
- swift3
- Check
- UITableView
- setting
- 앱스토어
- 얻는법
- 해몽
- 아이폰7
- IOS
- 포켓몬 GO
- GCD
- Example
- loop
- 페이백
- simulator
- swift
- 신도림
- 스마트폰
- error
- UIView
- Bitcode
- 샘플
- 포켓볼
- push
- 공략
Archives
- Today
- Total
도래울
안드로이드 Notification 이 Clear 되지 않도록 하는 방법 본문
private void showNotification() {
CharSequence text = getText(R.string.started);
Notification notification = new Notification(R.drawable.run, text,System.currentTimeMillis());
notification.flags = notification.FLAG_NO_CLEAR;
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, mtsMain.class), 0);
notification.setLatestEventInfo(this, getText(R.string.started_label),
text, contentIntent);
mNM.notify(R.string.started, notification);
}
빨간 줄에 보이는 것처럼 플레그를 넣어주면 된다.
'개발 > Android' 카테고리의 다른 글
안드로이드 달력 만들기 (6) | 2016.02.05 |
---|---|
[Android] AlarmManger - 알람매니저 : Receiver, Notification - 리시버, 알림, 노티피케이션 (1) | 2016.02.05 |
[Android] Notification (0) | 2016.02.05 |
Get Phone State When Someone is calling using BroadcastReceiver Example (2) | 2016.02.05 |
Android Eclipse로 Debugging (0) | 2016.02.05 |
Comments