关闭应用后保存用户名和密码

时间:2015-08-12 18:45:24

标签: android save sharedpreferences

我变得非常困惑,我在其他问题中找不到答案。我有一个包含三个编辑文本的简单页面。第一个是用户名,第二个是密码,第三个是重新输入密码。我曾意图在第二个Activity中显示它们。然后我要求写入用户名和密码进入第三页,我不想再看到第一页(关闭应用程序后),我想输入用户名和密码以备将来使用。

这是我在第一堂课中的代码:

package com.example.Test1;

import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.text.Editable;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

    public class MyActivity extends Activity {
    Button btn1;
    EditText edit1;
    EditText edit2;
    EditText edit3;
    TextView txt1;
    TextView txt2;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        btn1 = (Button) findViewById(R.id.btn1);
        edit1 = (EditText) findViewById(R.id.edit1);
        edit2 = (EditText) findViewById(R.id.edit2);
        edit3 = (EditText) findViewById(R.id.edit3);
        txt1 = (TextView) findViewById(R.id.txt1);
        txt2 = (TextView) findViewById(R.id.txt2);
btn1.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {

        if((edit2.getText().toString().equals(edit3.getText().toString()))&(!edit2.getText().toString().equals("")))
            if (edit1.getText().toString().equals(""))
                txt1.setText("username field is empty");
            else{
                Intent intent = new Intent
                        (MyActivity.this,MyActivity2.class);
                intent.putExtra("myString", edit1.getText().toString());
                intent.putExtra("myString2", edit2.getText().toString());
                startActivity(intent);

            }
        else txt1.setText("passwords aren't same");
    }
});
    }




}

这是我的第二堂课

package com.example.Test1;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;


public class MyActivity2 extends Activity {
TextView txt2;
    TextView txt4;
    EditText us1;
    EditText pw1;
    Button button1;
    TextView txt5;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main2);

        String myString = getIntent().getStringExtra("myString");
        String myString2 = getIntent().getStringExtra("myString2");
        txt2 = (TextView) findViewById(R.id.txt2);
        txt4 = (TextView) findViewById(R.id.txt4);
        txt5 = (TextView) findViewById(R.id.txt5);
        txt2.setText(myString);
        txt4.setText(myString2);
        us1 = (EditText) findViewById(R.id.us1);
        pw1 = (EditText) findViewById(R.id.pw1);
        button1 = (Button) findViewById(R.id.button1);
        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if((us1.getText().toString().equals(txt2.getText().toString())&(pw1.getText().toString().equals(txt4.getText().toString()))))
                    startActivity(new Intent(MyActivity2.this,MyActivity3.class));
                 else {
                    txt5.setText("Username or Password is incorrect");


                }
            }
        });

    }
}

我想使用其他东西而不是txt4(TextView应该与EditText相同)并保存它。

如果你只是不明白我的需要,请告诉我解释一下。:D

1 个答案:

答案 0 :(得分:0)

您应该使用SharedPreference。 e.g。

获取SharedPreference对象(上下文不重要,很少有上下文给出相同的prefs)

SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(context);

将内容保存到SharedPreferences

SharedPreferences.Editor editor = settings.edit();
editor.putString("Username", "user");
editor.putString("Password", "pass");
editor.commit();

从SharedPreferences获得一些东西

String name = settings.getString("Username", "null");

如果未设置第一个的SharedPreference,则第二个值为值。

然后在onCreate中你可以这样做:

String name = settings.getString("Username", "null");
if (!name.equals("null")) {
    startActivity(new Intent(this, SecondActivity.class);
}