How to show notification in status bar?
问题 So i have created this notification in my activity Notification n = new Notification.Builder(getApplicationContext()) .setContentTitle("New mail from " + sender) .setContentText(subject) .setSmallIcon(R.drawable.notification) .build(); How can i now show it in status/notification bar along with the sound? 回答1: There is some good documentation at android developer site and have a look at the NotificationManager doc's Here you go, some code...: NotificationManager mNotificationManager =