注销后,用户将被定向到 android 中的登录屏幕。现在,如果用户点击手机的后退按钮,它应该停留在登录屏幕本身。

我怎样才能在android中做到这一点?
我在我的应用程序中使用了以下代码,但它会关闭我的应用程序。 它应该只停留在登录屏幕上

Intent objsignOut = new Intent(getBaseContext(),Hello.class);
objsignOut.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(objsignOut);

请指导我正确的方法。

最佳答案

覆盖登录 Activity 中的 onBackPressed,什么都不做。

public void onBackPressed() {
    //do nothing
}

10-07 19:06