简体   繁体   中英

want to show notification in status bar after posting notification

i want to show the notification in the status bar after posting the notification from the user. What should i have to do?

for notification in status bar...

final NotificationManager mgr = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
    Notification note = new Notification(R.drawable.msg,"New Message",System.currentTimeMillis());
    PendingIntent i = PendingIntent.getActivity(this, 0, new Intent(this,notification.class), 0);
    note.setLatestEventInfo(this,"NewMessage","You Receive "+count+" New Message", i);

    mgr.notify(Notify,note);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM