0

私は自分の課題をやっていますが、If ステートメントが shredpreference に保存されたパスワードを取得できず、このページに入力されたパスワードと比較できない理由がわかりません。どの変数または特定の部分を間違えたのか本当に知りたいですか? みんな助けてください!!!

package com.wheresmyphone;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class Check_Activity extends Activity {

public static final String passwdfile = "passwd";

String passwd;
private static final String PREF_PASSWORD = "PassWord";
protected EditText PassWordField;
protected Button EnterButton;

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

    final EditText userpassword = (EditText)findViewById(R.id.editText1);

    Button b = (Button)findViewById(R.id.button1);

    sharedpref = getSharedPreferences(passwdfile, 0);





    b.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            String passwd = userpassword.getText().toString();
            SharedPreferences passwdfile = getSharedPreferences("passwd",0);
            SharedPreferences.Editor editor = sharedpref.edit();
            editor.putString(PREF_PASSWORD, passwd);
            editor.commit();
            //commit data
            String storedpassword = passwdfile.getString(passwd, null) ;  


            if (passwd.equals(storedpassword)) {

            startActivity(new Intent(Check_Activity.this, MainActivity.class));


                finish();




            }else {
                Toast.makeText(Check_Activity.this, "Incorrect Password, Please try again!", Toast.LENGTH_LONG).show();
                return;
            }

        }



        });
}
4

1 に答える 1

2

間違ったキーで保存されたパスワードを取得しようとしています。つまり、次のように変更します。

String storedpassword = passwdfile.getString(passwd, null);

に:

String storedpassword = passwdfile.getString(PREF_PASSWORD, null);
于 2013-10-21T23:39:25.403 に答える