Android学习(5)——小案例(SharedPreference)

本文介绍如何使用Android平台上的SharedPreferences来存储应用配置参数,通过一个登录界面案例展示了如何记录用户的登录状态及信息。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

SharedPreferences是Android平台上一个轻量级的存储器,主要用于存储一些应用程序的配置参数。SharedPreferences中存储的数据是以key/value键值对的形式保存在xml文件中,该文件位于data/data//shared_prefs文件夹中。

注意:SharedPreferences中的value值只能是float、int、long、boolean、String、StringSet类型数据。

案例实现:
当用户选中了记住密码复选框,并成功登录一次之后,这个时候如果再重新启动登录界面,之前输入的用户名和密码就会显示在文本框中。

图片素材:
这里写图片描述 这里写图片描述
这里写图片描述

ActivityMain.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#A4D3EE"
    tools:context="com.example.administrator.login.LoginActivity">

    <include layout="@layout/login_top"></include>

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/deer"
        android:id="@+id/imageView"
        android:layout_alignParentBottom="true" />

</RelativeLayout>

ActivityTwo.xml

?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_two"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.administrator.login.TwoActivity">

    <TextView
        android:text="Welcome"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:textSize="40sp"
        android:id="@+id/textView" />
</RelativeLayout>

LoginTop.xml


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="32dp">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/etName"
        android:drawableLeft="@drawable/icon_user"
        android:drawablePadding="10dp"
        android:ems="10"
        android:hint="请输入账号"
        android:background="#ffffff">

        <requestFocus/>
        </EditText>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/etPassword"
        android:layout_below="@id/etName"
        android:drawableLeft="@drawable/icon_pass"
        android:drawablePadding="10dp"
        android:ems="10"
        android:hint="请输入密码"
        android:background="#ffffff"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/etPassword">
        <CheckBox
            android:text="记住密码"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/cbIsRememberPass"
            android:textSize="20sp"
            android:layout_weight="1"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="#6495ED"
            android:onClick="login"
            android:text="登录"/>
    </LinearLayout>

</RelativeLayout>

LoginActivity.java

package com.example.administrator.login;

import android.content.Context;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.EditText;

public class LoginActivity extends AppCompatActivity {
    private EditText etName;
    private EditText etPassword;
    private CheckBox cbIsRememberPass;
    private  SharedPreferences sharedPreferences;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initViews();
        sharedPreferences=getSharedPreferences("rememberpassword",Context.MODE_PRIVATE);
        boolean isRemember= sharedPreferences.getBoolean("rememberpassword",false);
    if(isRemember){
        String name=sharedPreferences.getString("name","");
        String password=sharedPreferences.getString("password","");
        etName.setText(name);
        etPassword.setText(password);
        cbIsRememberPass.setChecked(true);
    }
    }
    public void initViews(){
        etName=(EditText)findViewById(R.id.etName);
        etPassword=(EditText)findViewById(R.id.etPassword);
        cbIsRememberPass=(CheckBox)findViewById(R.id.cbIsRememberPass);
    }
    public void login(View view){
        String name=etName.getText().toString();
        String password=etPassword.getText().toString();
        if("admin".equals(name)&&"123456".equals(password)){
            SharedPreferences.Editor editor=sharedPreferences.edit();
            if(cbIsRememberPass.isChecked()){
                editor.putBoolean("rememberpassword",true);
                editor.putString("name",name);
                editor.putString("password",password);
            }else{
                editor.clear();
            }
            editor.commit();
Intent intent=new Intent(this,TwoActivity.class);
startActivity(intent);
finish();

        }else {
    Toast.makeText(this,"账号或密码错误",Toast.LENGTH_LONG);
}

    }
}

效果图片
这里写图片描述
输入信息
这里写图片描述
进入页面
这里写图片描述

实现小案例。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值