안녕하세요..
공부중인 초보입니다.ㅋ
노티피케이션 질문인데요
노티피케이션 관련 소스를 보던중에 의문이있어 문의드립니다.
노티피케이션에 글자가 입력될때 , 위에 알람이안나오게 하고 싶은데요 ..
도저희 검색이 안되서 여쭤봅니다 ㅠ
NotificationManager notiMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification noti = new Notification(
android.R.drawable.star_on,
"요게 알람",
System.currentTimeMillis());
Intent intent = new Intent();
intent.setClassName("test", "test Activite");
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, 0);
noti.setLatestEventInfo(this,"요기가 재목", "요기가 내용", contentIntent);
notiMgr.notify(1, noti);
요래 하면 노티피케이션에 알람이 생기던데요
위에 Notification noti = new Notification(
android.R.drawable.star_on,
"요게 알람",
System.currentTimeMillis());




api demo 에 나와있네요 -_-
Notification noti = new Notification(
android.R.drawable.star_on,
null,
System.currentTimeMillis());
요래 하니 알람이 생기지 않네요 ㅋㅋ
감사합니다^^