功能描述:如果用户登录时勾选了“记住密码”选项,且用户名密码正确,在点击“登录”按钮跳转的同时将用户名、密码、以及记住密码复选按钮的状态3个信息,以SharedPreferences方式保存。
目录
1.项目框架
2.activity_main.xml的代码
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#99F9FBE7"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="用户信息管理系统"
android:textColor="#F06292"
android:textSize="24sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="18dp"
android:layout_marginRight="18dp"
android:orientation="horizontal">
<TextView
android:id="@+id/textView_name"
android:layout_width="1dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="账号:"
android:textColor="#8BC34A"
android:textSize="18sp" />
<EditText
android:id="@+id/editText_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"