0
我在我的應用程序中使用狀態欄通知,並通過單擊按鈕發送它。但是當通知到達時,打開時顯示錯誤的日期(在我的情況下顯示爲1/1/1970)。如何在Android狀態欄通知中顯示正確的當前時間?
我使用下面的代碼顯示狀態欄通知。
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.ic_launcher, "Notify", 1000);
Context context = getApplicationContext();
Intent intent = new Intent(this, NotificationActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
notification.setLatestEventInfo(context, "TITLE", "MESSAGE", pendingIntent);
notificationManager.notify(R.id.button1, notification);
}
謝謝Blundell.It工作。 – AB1209 2012-04-23 14:26:53