I am using Status Bar Notification in my app and sending it on clicking a Button.But when Notification arrives, on opening it shows wrong date(in my case it is showing 1/1/1970).

I am using following code for showing Status Bar Notification.
@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);
}
Taken from my blog post here:
http://blog.blundellapps.com/notification-for-a-user-chosen-time/
You should create your notification like this: