Android中数据的保存和回显问题sharepreferences

main.xml中的代码:
Android中数据的保存和回显问题sharepreferences_第1张图片

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <EditText
        android:hint="账号"
        android:id="@+id/edit1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <EditText
        android:hint="密码"
        android:id="@+id/edit2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <Button
        android:id="@+id/btn"
        android:text="登录"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>

MainActivity中的代码:
Android中数据的保存和回显问题sharepreferences_第2张图片

package com.example.sharepreferences;

import androidx.appcompat.app.AppCompatActivity;

import android.content.SharedPreferences;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import java.util.Map;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {


    private EditText edit1;
    private EditText edit2;
    private Button btn;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Map<String,String> userInfo = SaveQQ.getUserInfo(this);
        if(userInfo != null){
            //将获取带的账号显示在界面上
            edit1.setText(userInfo.get("account"));
            //将获取到的密码显示在界面上
            edit2.setText(userInfo.get("password"));
        }
        //第一步的话就是找到我们的控件和按钮
        initView();
    }

    private void initView() {
        //找到我们的控件
        edit1 = (EditText) findViewById(R.id.edit1);
        edit2 = (EditText) findViewById(R.id.edit2);
        btn = (Button) findViewById(R.id.btn);
        //为我们的按钮设置我们的点击监听事件
        btn.setOnClickListener(this);
}

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.btn:
                String account = edit1.getText().toString().trim();
                String password = edit1.getText().toString();
                //检验我们输入的账号和密码是否为空
                if(TextUtils.isEmpty(account)){
                    Toast.makeText(this,"请输入账号",Toast.LENGTH_SHORT).show();
                    return;
                }
                if(TextUtils.isEmpty(password)){
                    Toast.makeText(this,"请输入密码",Toast.LENGTH_SHORT).show();
                    return;
                }
                Toast.makeText(this,"登录成功",Toast.LENGTH_SHORT).show();
                boolean isSaveSuccess = SaveQQ.saveUserInfo(this,account,password);
                if(isSaveSuccess){
                    Toast.makeText(this,"保存成功",Toast.LENGTH_SHORT).show();
                }else{
                    Toast.makeText(this,"失败",Toast.LENGTH_SHORT).show();
                }
                break;
        }

    }
}

单独的存储代码:
Android中数据的保存和回显问题sharepreferences_第3张图片

package com.example.sharepreferences;

import android.content.Context;
import android.content.SharedPreferences;

import java.util.HashMap;
import java.util.Map;

public class SaveQQ {
   //一个的话是用来读文件的一个的话是用来写文件的
    public static boolean saveUserInfo(Context context,String account,String password){
        //这个的话是用来读文件的
        SharedPreferences sp = context.getSharedPreferences("data",Context.MODE_PRIVATE);
        //这个的话是用来写文件的
        SharedPreferences.Editor editor = sp.edit();
        editor.putString("userName",account);
        editor.putString("pwd",password);
        //写完我们的文件的话记得要将我们的文件进行提交
        editor.apply();
        return true;
    }
    //然后的话就是从我们的数据库中获取文件
    public static Map<String,String> getUserInfo(Context context){
        SharedPreferences sp = context.getSharedPreferences("data",Context.MODE_PRIVATE);
        String account = sp.getString("userName",null);
        String password = sp.getString("pwd",null);
        Map<String,String> userMap = new HashMap<String,String>();
        userMap.put("account",account);
        userMap.put("password",password);
        return userMap;
    }
}

Android中数据的保存和回显问题sharepreferences_第4张图片

你可能感兴趣的:(androidSQLite,android,安卓,移动开发,app,sqlite)