1

我第一次开发一个安卓应用程序,我想为登录和注销创建会话。我看到大多数人建议使用SharedPreferences。但是如何检查用户是否已注销?如果用户没有点击我的应用程序,那么登录页面将不会显示!用户可以立即进入主页。

4

1 回答 1

1

当用户登录成功调用 setLogin 函数并将布尔值设置为 true 并且当用户返回时检查用户 isLogin() 是否返回 true 然后将用户重定向到带有 Intent 的主页。

public boolean isLogin() {

        return pref.getBoolean("login", false);

    }

    public void setLogin(Boolean x) {
        SharedPreferences.Editor editor = pref.edit();
        editor.putBoolean("login", x);
        editor.commit();
    }
于 2012-11-01T19:49:56.323 回答