中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android實現記住密碼功能

發布時間:2020-09-29 11:21:20 來源:腳本之家 閱讀:170 作者:Philtell 欄目:移動開發

本文實例為大家分享了Android實現記住密碼功能的具體代碼,供大家參考,具體內容如下

LoginActivity.java

package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;

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;

import com.wangdeqiang.www.chatwithrobot.R;

import static com.wangdeqiang.www.chatwithrobot.R.id.account;

/**
 * @author
 */

public class LoginActivity extends BaseActivity {
  private SharedPreferences pref;

  private SharedPreferences.Editor editor;

  private EditText accountEdit;

  private EditText passwordEdit;

  private Button login;

  private CheckBox rememberPass;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_login);
    pref = PreferenceManager.getDefaultSharedPreferences(this);
    accountEdit = (EditText) findViewById(account);
    passwordEdit = (EditText) findViewById(R.id.password);
    rememberPass = (CheckBox) findViewById(R.id.remember_pass);
    login = (Button) findViewById(R.id.login);
    boolean isRemeber = pref.getBoolean("remember_password",false);
    if(isRemeber) {
      //將賬號和密碼都設置到文本框中
      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 account = pref.getString("account", "").toString();
        String password = pref.getString("password", "").toString();
        //如果賬號和密碼是admin和123456,就認為登陸成功
        if (account.equals("admin") && password.equals("123456")) {
          editor = pref.edit();
          if (rememberPass.isChecked()) {
            editor.putBoolean("remember", false);
            editor.putString("account", account);
            editor.putString("password", password);
          } else {
            editor.apply();
          }
          editor.commit();
          Intent intent = new Intent(LoginActivity.this, Main3Activity.class);
          startActivity(intent);
          finish();
        } else {
          Toast.makeText(LoginActivity.this, "密碼或者賬號錯誤", Toast.LENGTH_SHORT).show();
        }
      }
    });




    }
   }

activity_login.xml

<?xml version="1.0" encoding="utf-8"?>

<TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:stretchColumns="1"
  >
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="60dp"
      android:orientation="horizontal">

      <TextView
        android:layout_width="90dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="Account:"
        android:textSize="18sp" />

      <EditText
        android:id="@+id/account"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1" />
    </LinearLayout>

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="60dp"
      android:orientation="horizontal">

      <TextView
        android:layout_width="90dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="Password"
        android:textSize="18sp" />

      <EditText
        android:id="@+id/password"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:inputType="textPassword" />
    </LinearLayout>
  </LinearLayout>
  <TableRow>
    <CheckBox
      android:id="@+id/remember_pass"
      android:layout_height="wrap_content"
      />
    <TextView
      android:layout_height="wrap_content"
      android:text="Remeber password"
      />
  </TableRow>
  <Button
    android:id="@+id/login"
    android:layout_height="wrap_content"
    android:layout_span="2"
    android:text="Login"
    />
</TableLayout>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

岑巩县| 当阳市| 辉南县| 花莲县| 新民市| 温州市| 淮安市| 平和县| 清水河县| 南昌县| 新昌县| 宁津县| 仁怀市| 灵璧县| 新晃| 武冈市| 新余市| 灵寿县| 饶阳县| 赫章县| 太湖县| 宜昌市| 浪卡子县| 全椒县| 永城市| 红安县| 南江县| 淳安县| 克山县| 巴南区| 石泉县| 大足县| 罗田县| 长丰县| 徐州市| 南昌县| 桃园县| 桂林市| 牡丹江市| 平罗县| 安阳县|