Android实现记住密码功能

 更新时间:2019年09月08日 17:04:27   作者:Philtell  
这篇文章主要为大家详细介绍了Android实现记住密码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了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>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Flutter Getx中的put和lazyPut函数使用案例解析

    Flutter Getx中的put和lazyPut函数使用案例解析

    这篇文章主要为大家介绍了Flutter Getx中的put和lazyPut函数使用案例解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-07-07
  • Android Studio获取SHA1值实例详解

    Android Studio获取SHA1值实例详解

    这篇文章主要介绍了Android Studio获取SHA1值实例详解的相关资料,需要的朋友可以参考下
    2017-06-06
  • Android实现双模(CDMA/GSM)手机短信监听的方法

    Android实现双模(CDMA/GSM)手机短信监听的方法

    这篇文章主要介绍了Android实现双模(CDMA/GSM)手机短信监听的方法,涉及Android短信的原理与相关操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2016-06-06
  • Android Studio 3.6中使用视图绑定替代 findViewById的方法

    Android Studio 3.6中使用视图绑定替代 findViewById的方法

    从 Android Studio 3.6 开始,视图绑定能够通过生成绑定对象来替代 findViewById,从而可以帮您简化代码、移除 bug,并且从 findViewById 的模版代码中解脱出来,今天通过本文给大家介绍使用视图绑定替代 findViewById的方法,感兴趣的朋友一起看看吧
    2020-03-03
  • Android 优化之存储优化的实现

    Android 优化之存储优化的实现

    这篇文章主要介绍了Android 优化之存储优化的实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-07-07
  • Android如何实现社交应用中的评论与回复功能详解

    Android如何实现社交应用中的评论与回复功能详解

    目前,各种App的社区或者用户晒照片、发说说的地方,都提供了评论功能,为了更好地学习,自己把这个功能实现了一下,下面这篇文章主要给大家介绍了关于Android如何实现社交应用中的评论与回复功能的相关资料,需要的朋友可以参考下
    2018-07-07
  • 轻松实现Android语音识别功能

    轻松实现Android语音识别功能

    这篇文章主要为初学者介绍了轻松实现Android语音识别功能的代码,感兴趣的小伙伴们可以参考一下
    2016-07-07
  • Android使用ContentResolver搜索手机通讯录的方法

    Android使用ContentResolver搜索手机通讯录的方法

    这篇文章主要介绍了Android使用ContentResolver搜索手机通讯录的方法,结合实例形式分析了Android中ContentResolver操作手机通讯录的具体步骤与相关实现技巧,需要的朋友可以参考下
    2016-01-01
  • Android Studio添加日志过滤方式

    Android Studio添加日志过滤方式

    这篇文章主要介绍了Android Studio添加日志过滤方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-04-04
  • Android自定义控件单位尺寸实现代码

    Android自定义控件单位尺寸实现代码

    这篇文章主要介绍了Android自定义控件单位尺寸实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-04-04

最新评论