android开发之让Android点击通知栏信息后返回正在运行的程序

时间:2022-08-30 14:14:15
public void shownotification(String msg)
{
  NotificationManager
barmanager=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
  Notification notice = new
Notification(android.R.drawable.stat_notify_chat,"服务器发来信息了",System.currentTimeMillis());
  notice.flags=Notification.FLAG_AUTO_CANCEL;
  Intent appIntent = new Intent(Intent.ACTION_MAIN);
  //appIntent.setAction(Intent.ACTION_MAIN);
  appIntent.addCategory(Intent.CATEGORY_LAUNCHER);
  appIntent.setComponent(new ComponentName(this.getPackageName(),
this.getPackageName() + "." + this.getLocalClassName()));
  appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|
Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);//关键的一步,设置启动模式
  PendingIntent contentIntent =PendingIntent.getActivity(this,
0,appIntent,0);
  notice.setLatestEventInfo(this,"通知","信息:"+msg, contentIntent);
  barmanager.notify(STATUS_BAR_ID,notice);
}