3
其實我的應用程序有一個活動。對於創建通知我必須通過掛起的活動意圖。一個活動的多個通知
NotificationManager mgr=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification note=new Notification(mob.app.R.drawable.message,"Message!",System.currentTimeMillis());
// This pending intent will open after notification click
PendingIntent i=PendingIntent.getActivity(this, 2,new Intent(this,SaleNotification.class),0);
note.setLatestEventInfo(activity,messageHeading,message, i);
//After uncomment this line you will see number of notification arrived
note.number=notifyNumber;
mgr.notify(0, note);
這裏SaleNotification.class不是activity.It是簡單的類。 在這種情況下是否可以創建多個通知?以及如何? 在此先感謝!
感謝它的工作原理... – Sunny
它總是很高興接受的答案:) –