mNotificationIntent.putExtra("isFromNotification", true);
mNotificationIntent.putExtra("string", "kankan");
mNotificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
// need to set flag FLAG_UPDATE_CURRENT to get extras transferred
PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, mNotificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
//设置在通知栏显示的
mNotification = new Notification(R.drawable.notify_newmessage, title+":"+message,System.currentTimeMillis());