亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現登陸界面的記住密碼功能

發布時間:2022-04-24 10:36:37 來源:億速云 閱讀:398 作者:iii 欄目:開發技術

這篇文章主要介紹“Android如何實現登陸界面的記住密碼功能”,在日常操作中,相信很多人在Android如何實現登陸界面的記住密碼功能問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android如何實現登陸界面的記住密碼功能”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

所需工具

一、復選框控件:CheckBox,
二、SharedPreferences用于存儲數據,該工具的讀取和寫入較為簡單,放在代碼里的注釋中解釋

實現邏輯:

如果沒弄懂邏輯,代碼看起來還是有點小難度的

一、判斷SharedPreferences中已存入的CheckBox的Boolean信息(沒有讀取到則默認條件為“否”),如果條件為“是”(同時滿足能讀取到和讀取的信息為“是”兩個條件),通過SharedPreferences將存儲的數據(account和password)讀取出來并寫入對應的文本框。

二、點擊登錄按鍵時,判斷CheckBox是否勾選,如果條件為“是”,則將accout和password框里的數據(String)以及CheckBox的數據(Boolean)寫入SharedPreferences,若沒有勾選,則清除SharedPreferences中的數據。

Android如何實現登陸界面的記住密碼功能

實現代碼

一、ui界面

<?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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".LoginActivity">
<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="60dp">
    <TextView
        android:layout_width="90dp"
        android:text="Account"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_gravity="center"
        />
    <EditText
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_gravity="center"
        android:id="@+id/account"/>

</LinearLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="60dp">
    <TextView
        android:layout_width="90dp"
        android:text="Password"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_gravity="center"/>
    <EditText
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_gravity="center"
        android:id="@+id/password"/>
</LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/remember_pass"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="18sp"
            android:text="Rember password"/>
    </LinearLayout>
    <Button
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:text="LogIn"
        android:id="@+id/login"/>
</LinearLayout>

二、實現功能部分

package com.example.broadcastbestpractice;

import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;

public class LoginActivity extends BaseActivity {
    private EditText accountEdit;
    private EditText passwordEdit;
    private Button login;
    private SharedPreferences pref;//通過pref讀取SharedPreferences的數據
    private SharedPreferences.Editor editor;//editor將數據寫入SharedPreferences
    private CheckBox rememberPass;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);
        pref= PreferenceManager.getDefaultSharedPreferences(this);
        accountEdit = (EditText) findViewById(R.id.account);
        passwordEdit = (EditText) findViewById(R.id.password);
        rememberPass=(CheckBox)findViewById(R.id.remember_pass);
        login = (Button) findViewById(R.id.login);
        boolean isRemenber=pref.getBoolean("remember_password",false);//讀取上次登陸時存入"remember_password"的信息,沒有讀取到則默認為false
        if(isRemenber)//如果讀取為true,則將account和password,checkbox的信息寫入文本框
        {
            String account=pref.getString("account","");
            String password=pref.getString("password","");
            accountEdit.setText(account);
            passwordEdit.setText(password);
            rememberPass.setChecked(true);
        }
        login.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String accout = accountEdit.getText().toString();
                String password = passwordEdit.getText().toString();
                if (accout.equals("1") && password.equals("1")) {
                    editor=pref.edit();
                    if(rememberPass.isChecked()){//如果勾選了checkbox框,則將account,password,checkbox信息寫入
                        editor.putBoolean("remember_password",true);
                        editor.putString("account",accout);
                        editor.putString("password",password);
                    }else {
                        editor.clear();//若沒有,清除SharedPreferences存儲的信息
                    }
                    editor.apply();
                    Intent intent = new Intent(LoginActivity.this, MainActivity.class);
                    startActivity(intent);
                    finish();
                } else
                    Toast.makeText(LoginActivity.this, "account or password is wrong", Toast.LENGTH_SHORT).show();
            }
        });
    }
}

到此,關于“Android如何實現登陸界面的記住密碼功能”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

潼南县| 横山县| 尖扎县| 永仁县| 塘沽区| 虎林市| 阿图什市| 通海县| 张掖市| 海原县| 阳朔县| 潍坊市| 汉中市| 黎川县| 昭苏县| 高淳县| 和政县| 天台县| 娄底市| 革吉县| 新巴尔虎右旗| 乌鲁木齐县| 分宜县| 凯里市| 达州市| 龙陵县| 郴州市| 夹江县| 台山市| 博白县| 老河口市| 北碚区| 芜湖市| 中阳县| 家居| 宝坻区| 大理市| 华容县| 彭泽县| 宝山区| 平罗县|