美文网首页Android开发入门教程
Android开发学习 -- Day14持久化技术实践 -- 记

Android开发学习 -- Day14持久化技术实践 -- 记

作者: h080294 | 来源:发表于2018-03-26 23:32 被阅读9次

    我们在之前的学习中写过一个强制下线的demo,其中涉及到了一个模拟的登陆功能。那么今天,在原有的基础上,我们通过SharedPreferences来实现一个能够记住登录名和密码的功能。

    为了区分之前的登陆页面,我们新建一个LoginAdvActivity表示更高级的登陆,修改布局文件:

    <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:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="com.johnhao.listviewdemo.activity.LoginActivity">
    
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    
            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="用户名"
                android:textSize="20sp"/>
    
            <EditText
                android:id="@+id/edit_name"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="3"
                android:hint="用户名试试 tester"
                android:textSize="18sp"
                android:maxLength="20"/>
    
        </LinearLayout>
    
    
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    
            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="密 码"
                android:textSize="20sp"/>
    
            <EditText
                android:id="@+id/edit_password"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="3"
                android:hint="登陆密码试试 123456"
                android:textSize="18sp"
                android:maxLength="20"/>
    
        </LinearLayout>
    
        <LinearLayout
            android:orientation="horizontal"
            android:gravity="left"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    
            <CheckBox
                android:id="@+id/checkbox"
                android:layout_gravity="center"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    
            <TextView
                android:text="remeber password"
                android:layout_gravity="center"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    
        </LinearLayout>
    
        <Button
            android:id="@+id/btn_login"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginRight="10dp"
            android:background="#ffff00"
            android:text="Login"
            android:textAllCaps="false"
            android:textColor="#000000"/>
    
        <ImageView
            android:src="@drawable/qrcode"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="30dp"/>
    
    </LinearLayout>
    

    相对于原来的布局,我们增加了一个checkbox控件和一行文案。checkbox是一个复选框,用户可以通过点击的方式进行选中或取下,我们就用这个控件表示用户是否勾选了记住密码功能。接下来修改LoginAdvActivity代码:

    public class LoginAdvActivity extends AppCompatActivity {
    
        private Button btn;
        private EditText editUserName;
        private EditText editserPassword;
        private CheckBox rememberPass;
        private SharedPreferences prefs;
        private SharedPreferences.Editor editor;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_login_adv);
    
            setTitle("登陆");
            btn = findViewById(R.id.btn_login);
            editUserName = findViewById(R.id.edit_name);
            editserPassword = findViewById(R.id.edit_password);
            rememberPass = findViewById(R.id.checkbox);
    
            prefs = PreferenceManager.getDefaultSharedPreferences(this);
            boolean isRemember = prefs.getBoolean("remeber_password", false);
    
            if (isRemember) {
                String account = prefs.getString("account", "");
                String password = prefs.getString("password", "");
                editUserName.setText(account);
                editserPassword.setText(password);
                rememberPass.setChecked(true);
            }
    
            btn.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    String userName = editUserName.getText().toString();
                    String userPassword = editserPassword.getText().toString();
    
                    if (userName.equals("tester") && userPassword.equals("123456")) {
                        editor = prefs.edit();
                        if (rememberPass.isChecked()) {
                            editor.putBoolean("remeber_password", true);
                            editor.putString("account", userName);
                            editor.putString("password", userPassword);
                        } else {
                            editor.clear();
                        }
                        editor.apply();
                        // 登陆成功
                        Intent intent = new Intent(LoginAdvActivity.this, AfterLoginActivity.class);
                        startActivity(intent);
                        finish();
                    } else if (TextUtils.isEmpty(userName) || TextUtils.isEmpty(userPassword)) {
                        // 用户名或密码为空
                        Toast.makeText(LoginAdvActivity.this, "请输入用户名或者密码", Toast.LENGTH_SHORT).show();
                    } else {
                        // 用户名或密码不符合
                        Toast.makeText(LoginAdvActivity.this, "请输入正确的用户名和密码", Toast.LENGTH_SHORT).show();
                        editUserName.setText("");
                        editserPassword.setText("");
                    }
                }
            });
        }
    }
    

    首先在onCreate()方法中通过getDefaultSharedPreferences()得到了SharedPreferences对象,然后通过getBoolean获取remeber_password键对应的值。因为是第一次登陆,肯定没有任何数据,因此设置默认的值的false。在点击事件中,登陆成功后,我们先通过调用SharedPreferences的edit()得到一个SharedPreferences.Editor对象,然后判断checkbox是否是被选中状态。如果被选中,说明用户想保存密码,这样我就调用一系列put方法将数据存到SharedPreferences并提交。如果checkbox没有被选中,我们则调用clear()方法将数据清空。

    当用户保存了密码并成功登录后,remeber_password的值就为true了,这样让用户再次到登陆页面的时候,就会自动的从SharedPreferences读取数据,并将对应的数据填充到输入框中,由此实现简单的记住登陆密码的功能。

    重新运行下程序,记住登陆密码:

    取消记住登陆密码:

    简单的实例就这样,但是在实际的项目中不能这么应用。涉及到敏感的信息都需要进行加密处理来保护数据的安全性。

    关注获取更多内容

    相关文章

      网友评论

        本文标题:Android开发学习 -- Day14持久化技术实践 -- 记

        本文链接:https://www.haomeiwen.com/subject/xbmdcftx.html