Android—SharedPreference存储类-实现自动登录,记住密码

1.SharedPreference存储

SharedPreferences是用于保存用户一些简单设置数据,例如是否自动登陆,是否记住账号密码,登陆后显示的头像信息以及登录状态,是否在Wifi下才能联网等相关信息。在Android中我们通常使用一个轻量级的存储类——SharedPreferences来保存用户这些设置信息。SharedPreferences也是使用xml文件, 然后类似于Map集合,使用键-值的形式来存储数据。

2.想要使用SharedPreferences存储数据,首先要获取到SharedPreferences对象,获取SharedPreferences对象有三种方式。

1)Context类中的getSharedPreferences()方法,该方法的基本语法格式如下:

getSharedPreferences(String name, int mode)
name:用于指定SharedPreferences文件的名称,如果指定的文件不存在则自动创建。
mode:用于指定操作的模式,它的参数值可选,MODE_+PRIVATE(也是默认选项,表示当前应
用程序才可以访问,写入的内容会自动覆盖源文件的内容,传入0效果相同)。

2)Activity类中的getPreferences()方法,该方法语法格式如下:

getPreferences(int mode),其中参数mode的取值同getSharedPreferences()方法相同。

3)PreferenceManager类中的getDefaultSharedPreferences()方法,该方法语法格式如下:

PreferenceManager.getDefaultSharedPreferences(Context c)
这是一个静态方法,它接收一个Context参数,并自动使用当前应用程序的包名作为前缀来命名SharedPreferences文件。

3、向SharedPreferences中存入数据

获取到的SharedPreferences对象来存入数据,具体可以分为以下几个步骤。

步骤1:调用SharedPreferences对象的edit()方法来获取一个SharedPreferences.Editor对象,具体代码如下:
SharedPreferences.Editor ed=getSharedPreferences(“Test”,MODE_PRIVATE).edit();
步骤2:向SharedPreferences.Editor对象中添加数据,添加数据可以使用以下三种方法:
putBoolean()此方法添加布尔数据。
putString()此方法添加字符串数据。
putInt()此方法添加整形数据。
步骤3:完成以上两步后,通过调用apply()方法将数据提交保存,至此完成了数据的存储。

4、读取SharedPreferences中数据

从SharedPreferences中读取数据非常简单,通过SharedPreferences类提供的getXXX()一系列方法即可,每种数据对应一种读取的方法,具体如下:

getBoolean()此方法读取布尔数据
getString()此方法读取字符串数据
getInt()此方法读取整形数据

5.追加知识

6.实现勾选记住密码,下次登录,自动获取账户和密码,不勾选记住密码,下次登录,只记住账户

①XML文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" 
    android:orientation="vertical"
    
    >

    <TextView
        android:gravity="center_horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="登录记住密码,和自动登录"
         />
    
    <TextView
        android:layout_marginTop="30dp"
        android:gravity="left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="30sp"
        android:text="用户名"
         />
    <EditText
        android:id="@+id/et_name"
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入用户名" 
        />
    
        <TextView
        android:layout_marginTop="30dp"
        android:gravity="left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="30sp"
        android:text="密码"
         />
    <EditText
        android:id="@+id/et_password"
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入用户密码" 
        />
    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <Button
            android:layout_marginRight="20dp"
            android:id="@+id/btn_submit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="登录" 
            />
        <Button
            android:layout_marginRight="20dp"
            android:id="@+id/btn_cancle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="取消" 
            />
        
    </LinearLayout>
        <CheckBox
            android:id="@+id/cb_save"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="是否记住密码"
           >
            
        </CheckBox>
</LinearLayout>

效果:::
在这里插入图片描述
②java文件

//1.获取SharedPreferences对象数据,2有值,判断键值对值是否存在
public class LoginActivity extends Activity {
	private Button btn_submit,btn_cancle;
	private EditText et_name,et_password;
	private CheckBox cb_save;
	String name,password;
	Boolean isSave;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_login);
		
		//找对象
		btn_submit = (Button) findViewById(R.id.btn_submit);
		btn_cancle = (Button) findViewById(R.id.btn_cancle);
		et_name = (EditText) findViewById(R.id.et_name);
		et_password = (EditText) findViewById(R.id.et_password);
		cb_save = (CheckBox) findViewById(R.id.cb_save);
		
		//获取SharedPreferences判断是否已经存在数据
		SharedPreferences spf = getSharedPreferences("users", MODE_PRIVATE);
		//获取下边的loginname,如果没有赋空值
		name = spf.getString("loginname", "");
		//获取下边的loginpassword,如果没有赋空值
		password = spf.getString("loginpassword", "");
		//获取下边的issave,赋false-不记住密码
		isSave = spf.getBoolean("issave", false);
		//重置页面组件值
		et_name.setText(name);
		et_password.setText(password);
		cb_save.setChecked(isSave);
		
		//登录
		btn_submit.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				//获取页面组件的值
				name = et_name.getText().toString();
				password = et_password.getText().toString();
				isSave = cb_save.isChecked();
				//判断账户密码
				if(name.equals("bian")&&password.equals("qp10")){
					//1.调用SharedPreferences对象的edit()方法来获取一个SharedPreferences.Editor对象
					SharedPreferences.Editor edit = getSharedPreferences("users", MODE_PRIVATE).edit();
					
					if(isSave==true){//记住密码时
						edit.putString("loginname", name);
						edit.putString("loginpassword", password);
						edit.putBoolean("issave", isSave);
						edit.apply();
					}else {//不记住密码时
						edit.putString("loginname", name);
						edit.putString("loginpassword", "");
						edit.putBoolean("issave", false);
						edit.apply();
					}
					
					Toast.makeText(LoginActivity.this, "欢迎"+name+"登录", Toast.LENGTH_SHORT).show();
				}else {
					Toast.makeText(LoginActivity.this, "您输入信息有误", Toast.LENGTH_SHORT).show();
				}
			}
		});
		
		//取消登录
		btn_cancle.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				finish();
			}
		});
	}//oncreat结束
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值