0

我正在开发一个用户需要注册/登录的android应用程序,这很好用,但是当用户退出时,问题就出在哪里。

当前,当用户按下注销按钮时,它确实会将他们带回登录页面,但是如果您离开应用程序然后返回到它(因此它仍在内存中)而无需再次登录,它会将您带回页面你登录后看到的。

我使用 sharedpreference 来记录用户是否登录,然后进行启动活动,这是开始决定要显示哪个屏幕的第一件事:

public class Splash extends SherlockActivity {
    public static final String PREFS_NAME = "PrefsFile";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);

        SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
        boolean loggedin = settings.getBoolean("loggedIn", false);
        if (loggedin){
            Intent intent = new Intent(this, MyLists.class);
            startActivity(intent);
        }
        else{
            Intent intent = new Intent(this, LogIn.class);
            startActivity(intent);
        }
    }

}

然后我的注销按钮看起来像

private OnClickListener OnClick_logout = new OnClickListener() {
        public void onClick(View v) {
            SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
            SharedPreferences.Editor editor = settings.edit();
            editor.putBoolean("loggedIn", false);
            editor.putString("email", "");
            editor.putString("password", "");
            editor.commit();
            db.clearLists();
            db.clearProducts();
            Intent intent = new Intent(v.getContext(), Splash.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            v.getContext().startActivity(intent);
        }
    };

按下按钮后,启动活动会将用户带到当前的登录屏幕,但就像我说的那样,如果你关闭应用程序并返回它,它将把用户带到“MyLists”活动。

4

1 回答 1

0

您需要使用意图标志来清除堆栈历史记录。在您导航回登录屏幕之前,请说

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);

或者

意图.setFlags(意图.FLAG_ACTIVITY_NO_HISTORY);

然后单击后退按钮,您的应用程序将退出。

还要确保将 sharepreference 变量刷新为零或调用 System.exit()。

PS:调用 system.exit() 将使用户在每次他/她想使用该应用程序时登录。

希望有帮助

于 2013-08-27T08:55:43.973 回答