如何将我的应用程序的徽标放在通知栏中?我见过很多应用程序这样做。
比如左边这个:
谢谢。
他们来了
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
private void notification(String message){
int icon = R.drawable.ic_launcher;
CharSequence ticket = message;
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, ticket, when);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
CharSequence contentTitle = "Buzz Off";
CharSequence contentText = message;
Intent intent = new Intent(this, HomeScreen.class);
PendingIntent activity = PendingIntent.getActivity(this, 0, intent, 0);
notification.setLatestEventInfo(this, contentTitle, contentText, activity);
nm.notify(layout, notification);
buzzOff = true;
}