Android 禁止返回上一个activity 发表于 2022-11-07 | 分类于 Android 1234Intent intent=new Intent();intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK);intent.setClass(A.this,B.class);startActivity(intent); 主要就是这句话 1intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK); 加了这句话就不能返回上个activity了