도래울

안드로이드 Notification 이 Clear 되지 않도록 하는 방법 본문

개발/Android

안드로이드 Notification 이 Clear 되지 않도록 하는 방법

도래울 2016. 2. 5. 13:17

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);
}

빨간 줄에 보이는 것처럼 플레그를 넣어주면 된다.


Comments