Android后退时Activity重复出现解决办法

 当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);

你可能感兴趣的:(android)