当Activity之间进行跳转的时候,为每个intent设置一下setFlags就行了!
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Intent intent = new Intent(Device.this,Advertise.class);intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);intent.putExtra("newMSG", "");intent.putExtra("DelMSG", "");startActivity(intent);