java - session 管理遇到问题

标签 java android session sharedpreferences session-management

我正在开发一个应用程序,我想让用户仅在他/她注销之前的 session 时登录,但我无法做到这一点。每当我关闭程序并重新打开它时。即使我没有注销,它也会再次定向到主页。拜托了

  package in.co.medimap.www.medimap;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;

import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

import static in.co.medimap.www.medimap.R.layout.login;

/**
 * Created by sony on 28-04-2016.
 */
public class login extends Activity {
TextView signup_text;
Button login_button;
EditText PHONE_NO,PASSWORD;
AlertDialog.Builder builder;
public static final String MyPREFERENCE ="Myprefs";
public static final String PHONE="phone";
public static final String PASS="password";
SharedPreferences sharedPreferences;



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);



    setContentView(R.layout.login);
    signup_text=(TextView)findViewById(R.id.sign_up);
    signup_text.setOnClickListener(new View.OnClickListener(){

                                       @Override
                                       public void onClick(View v) {
                                           startActivity(new Intent(login.this,register.class));
                                       }
                                   });
    PHONE_NO=(EditText)findViewById(R.id.phone_no);
    PASSWORD=(EditText)findViewById(R.id.password);
    login_button=(Button)findViewById(R.id.login_button);

    login_button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
             String ph = PHONE_NO.getText().toString();
            String p=PASSWORD.getText().toString();


            if (ph.equals("")||p.equals("")) {

                builder = new AlertDialog.Builder(login.this);
                builder.setTitle("Something went wrong...");
                builder.setMessage("Please fill all the fields...");
                builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.dismiss();


                    }
                });
                AlertDialog alertDialog = builder.create();
                alertDialog.show();
            }
            else
            {
  //see from here
                sharedPreferences = getSharedPreferences(MyPREFERENCE,Context.MODE_PRIVATE );
                SharedPreferences.Editor editor = sharedPreferences.edit();

                editor.putString(PHONE, ph);
                editor.putString(PASS, p);
                editor.commit();

                BackgroundTask backgroundTask = new BackgroundTask(login.this);
                backgroundTask.execute("login",ph,p);

            }







}
});
    }
} 

这是我的主页 Activity ,登录后用户会去那里 我希望如果我没有注销,那么每当我打开我的应用程序时,它应该从这里开始

package in.co.medimap.www.medimap;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class HomeActivity extends Activity {

Button Logout = null;

TextView textView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_home);
    Logout = (Button) findViewById(R.id.Logout);
    textView = (TextView) findViewById(R.id.welcome_txt);
    String message = getIntent().getStringExtra("message");
    textView.setText(message);

    Logout.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            SharedPreferences sharedPreferences = getSharedPreferences(login.MyPREFERENCE, Context.MODE_PRIVATE);
            SharedPreferences.Editor editor = sharedPreferences.edit();
            editor.clear();
            editor.commit();
            Intent intent = new Intent(HomeActivity.this,MainActivity.class);
            startActivity(intent);



        }
    });




}
}

最佳答案

如果您希望每次用户离开应用程序时都进行注销,为什么不手动执行呢?

您已经设置了注销按钮setOnClickListener,因此只需执行以下操作:

@Override
protected void onPause() {
    super.onPause();
    if(Logout != null) {
        Logout.callOnClick();
    }
}

这意味着每次用户离开此 Activity 时都会注销。
确保处理这样的情况:如果他们离开 Activity 但转到页面上的其他 Activity ,则不会注销。

==========编辑==========

我猜测您的 login Activity 是应用程序打开时启动的主要 Activity ,因此只需在执行任何其他任务之前将其放入 onCreate 中即可。在 setContentView 之后,您应该执行此操作。

SharedPreferences sharedPreferences = getSharedPreferences(login.MyPREFERENCE, Context.MODE_PRIVATE);

String phone = sharedPreferences.getString(PHONE, "");
String pass = sharedPreferences.getString(PASS, "");

if(!phone.isEmpty() && !pass.isEmpty()) {
    // this means ID and passwords are already saved so just start your home activity here
    startActivity(new Intent(context, MainActivity.class));
    finish();
}

在您的MainActivity中:

只需从 SharedPreferences 读取值并在必要时登录。

希望这有帮助。

==========编辑2

此外,您的注销应该如下所示。不要使用commitclear。输入空值并使用 apply

Logout.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        SharedPreferences sharedPreferences = getSharedPreferences(login.MyPREFERENCE, Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = sharedPreferences.edit();
        editor.putString(PHONE, "");
        editor.putString(PASS, "");
        editor.apply();
        Intent intent = new Intent(HomeActivity.this,MainActivity.class);
        startActivity(intent);
    }
});

关于java - session 管理遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37099913/

相关文章:

java - 我可以使用表面对象在 Android 中制作显示对象吗?

java - 在 Android Studio 中导入项目后如何修复错误

php - 代码点火器 : losing session data after login

java - 如何将 Java Web 应用程序迁移到 Heroku

java - Spring 命名参数 : how can I parameterize Oracle interval in my query?

android - Android Volley 中的 JsonRequest VS StringRequest

session - 清除所有网站缓存?

c# - 如何在 ASP.NET 中使用登录系统上传特定文件夹?

java - 尝试用java创建一个菜单来计算和显示有关圆的信息

java - 显示 2 个 Activity 之间的进度条