Intent Flag 不适用于 android 中的物理按钮

Intent Flag doesn't work for physical button in android

我想创建一个简单的应用程序,它有两个活动...我想从另一个 activity 跳转而不执行 OnDestroy(); 我想要会发生 OnPause();

我可以使用如下的 flah 来实现。

Intent intent = new Intent(secondActivity.this, firstSecond.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);

但该标志仅适用于当前 activity 内的 BackButton。如果我在手机中单击后退按钮,则该标志不起作用.....我该怎么办????有帮助吗??

提前致谢

覆盖 onBackPressed() 并改为执行相同的代码:

Intent intent = new Intent(secondActivity.this, firstSecond.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);