Android实现记住密码小功能

本文实例为大家分享了Android实现记住密码小功能的具体代码,供大家参考,具体内容如下

以下有三个点 第一点是记住密码, 第二点是点击隐藏点击显示, 第三点是登录存储。

XML布局

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".v.MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="登录"
        android:textSize="20sp"
        android:textColor="#FFEB3B"
        android:gravity="center"
        android:padding="10dp"
        android:background="#8BC34A"
        >
    </TextView>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginTop="50dp"
        >

      <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="邮箱:"
          android:textColor="#03A9F4"
          android:textSize="15sp"
          android:textStyle="italic"
          android:layout_marginLeft="30dp"
          android:padding="10dp"
          >
      </TextView>

      <EditText
          android:id="@+id/youxiang"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:hint="请输入邮箱"
          android:paddingLeft="10dp"
          android:textColorHint="#FF5722"
          android:textStyle="italic"
          android:layout_marginRight="40dp"
          >
      </EditText>

    </LinearLayout>

  <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal"
      android:layout_marginTop="10dp"
      >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="密码:"
        android:textColor="#03A9F4"
        android:textSize="15sp"
        android:textStyle="italic"
        android:layout_marginLeft="30dp"
        android:padding="10dp"
        >
    </TextView>

    <EditText
        android:id="@+id/mima"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:hint="请输入密码"
        android:paddingLeft="10dp"
        android:textColorHint="#FF5722"
        android:textStyle="italic"
        >
    </EditText>

    <ImageView
        android:id="@+id/can"
        android:layout_width="20dp"
        android:layout_height="match_parent"
        android:src="@mipmap/login_icon_hide_password_n"
        android:layout_marginRight="20dp"
        >
    </ImageView>
  </LinearLayout>

  <CheckBox
      android:id="@+id/ji"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="记住密码"
      android:textColor="#FF5722"
      android:layout_marginLeft="40dp"
      android:layout_marginTop="15dp"
      >
  </CheckBox>

  <Button
      android:id="@+id/deng"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="登录"
      android:textColor="#FF5722"
      android:background="#03A9F4"
      android:textStyle="bold"
      android:textSize="15sp"
      android:layout_margin="30dp"
      >
  </Button>
</LinearLayout>

Java代码

package com.wd.health.v;

import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;

import com.wd.health.R;
import com.wd.health.base.BaseActivity;
import com.wd.health.bean.LoginBean;
import com.wd.health.contract.ILoginContract;
import com.wd.health.net.RsaCoder;
import com.wd.health.p.LoginPresenter;

import butterknife.BindView;
import butterknife.ButterKnife;

public class MainActivity extends BaseActivity<LoginPresenter> implements ILoginContract.ILoginView {

    @BindView(R.id.can)
    ImageView can;
    @BindView(R.id.ji)
    CheckBox ji;
    @BindView(R.id.deng)
    Button deng;
    @BindView(R.id.youxiang)
    EditText youxiang;
    @BindView(R.id.mima)
    EditText mima;
    boolean sb=true;
    private SharedPreferences user;
    private SharedPreferences.Editor edit;

    @Override
    protected int initView() {
        return R.layout.activity_main;
    }

    @Override
    protected LoginPresenter CreatPresenter() {
        return new LoginPresenter();
    }

    @Override
    protected void loadData() {
        ButterKnife.bind(this);
        //默认是隐藏
        mima.setTransformationMethod(PasswordTransformationMethod.getInstance());
        //点击小眼睛
        can.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (sb){
                    can.setImageResource(R.mipmap.login_icon_show_password);
                    mima.setTransformationMethod(HideReturnsTransformationMethod.getInstance());    //显示
                    sb=false;
                }else {
                    can.setImageResource(R.mipmap.login_icon_hide_password_n);
                    mima.setTransformationMethod(PasswordTransformationMethod.getInstance());   //隐藏
                    sb=true;
                }
            }
        });
        //记住密码
        user = getSharedPreferences("user", MODE_PRIVATE);
        boolean isRemenber = user.getBoolean("remember_password", false);
        if(isRemenber){
            youxiang.setText(user.getString("phone",""));
            mima.setText(user.getString("password",""));
            ji.setChecked(true);
        }

        //点击登录
        deng.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String s1 = youxiang.getText().toString();      //获取输入框邮箱
                String s2 = mima.getText().toString();          //获取输入框密码
                String a="";        //存放加密的密码
                try {
                    a = RsaCoder.encryptByPublicKey(s2);        //加密后的密码
                } catch (Exception e) {
                    e.printStackTrace();
                }
                if (s1.equals("")){         //如果邮箱为空则吐司
                    Toast.makeText(MainActivity.this, "请输入邮箱", Toast.LENGTH_SHORT).show();
                }else if (s2.equals("")){   //如果密码为空则吐司
                    Toast.makeText(MainActivity.this, "请输入密码", Toast.LENGTH_SHORT).show();
                }else {
                    //这是MVP调用的P层
                    mPresenter.ShowDengPresenter(s1,a);     //s1是邮箱  a是加密的密码
                    //记住密码
                    edit = user.edit();
                    if(ji.isChecked()){
                        edit.putBoolean("remember_password",true);
                        edit.putString("phone",s1);        //没有加密的邮箱
                        edit.putString("password",s2);      //没有加密的密码
                    }else{
                        edit.clear();
                    }
                    edit.apply();
                }

            }
        });

    }

    @Override
    public void ShowDengView(LoginBean loginBean) {
        Toast.makeText(this, loginBean.getMessage(), Toast.LENGTH_SHORT).show();
        if (loginBean.getStatus().equals("0000")){
            user.edit().putString("userId",String.valueOf(loginBean.getResult().getUserId()))
                    .putString("sessionId",loginBean.getResult().getSessionId())
                    .putString("nickName",loginBean.getResult().getNickName())
                    .putString("userName",loginBean.getResult().getUserName())
                    .putString("jiGuangPwd",loginBean.getResult().getJiGuangPwd())
                    .putString("headPic",loginBean.getResult().getHeadPic())
                    .putString("sex",String.valueOf(loginBean.getResult().getSex()))
                    .putString("age",String.valueOf(loginBean.getResult().getAge()))
                    .putString("height",String.valueOf(loginBean.getResult().getHeight()))
                    .putString("weight",String.valueOf(loginBean.getResult().getWeight()))
                    .putString("email",String.valueOf(loginBean.getResult().getEmail()))
                    .putString("whetherBingWeChat",String.valueOf(loginBean.getResult().getWhetherBingWeChat()))
                    .putString("invitationCode",String.valueOf(loginBean.getResult().getInvitationCode()))
                    .putString("faceFlag",String.valueOf(loginBean.getResult().getFaceFlag()))
                    .commit();
            //成功后跳转到首页
            Intent intent = new Intent(MainActivity.this,HomeActivity.class);
            startActivity(intent);
            finish();
        }

    }
}

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

(0)

相关推荐

  • Android实现带有记住密码功能的登陆界面

    本文实例为大家分享了Android带有记住密码功能的登陆界面实现代码,供大家参考,具体内容如下 1.设计思路 主要采用SharedPreferences来保存用户数据,本Demo没有经过加密,所有一旦Android系统被ROOT的话,其他用户就可以查看用户的私有目录,密码文件就很不安全.所以真正应用在软件上面的,一定要经过加密才保存,可以选择MD5加密. SharedPreferences介绍可以参看这篇博文:http://www.jb51.net/article/84859.htm TextW

  • Android实现用户登录记住密码功能

    一.打开之前完成的Case_login进行修改再编辑 二.将注册按钮删除并在登录按钮前拖出一个checkBox,编辑代码如下: 在layout_top.xml文件中进行编辑 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_

  • Android实现记住密码功能

    本文实例为大家分享了Android实现记住密码功能的具体代码,供大家参考,具体内容如下 LoginActivity.java package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.preferen

  • Android SharedPreferences实现记住密码和自动登录

    本文实例为大家分享了Android SharedPreferences实现记住密码和自动登录,供大家参考,具体内容如下 效果图: 第一次进入进来 勾选记住密码和自动登录成功后,第二次进来 说明:中间存在的图片或者多余的其他部分可删掉.留下最主要的填写部分和登陆按钮即可.功能还是可以实现的. XML文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="h

  • Android通过"记住密码"功能学习数据存储类SharedPreferences详解及实例

    SharedPreferences是Android中存储简单数据的一个工具类.可以想象它是一个小小的Cookie,它通过用键值对的方式把简单数据类型(boolean.int.float.long和String)存储在应用程序的私有目录下(data/data/包名/shared_prefs/)自己定义的xml文件中. 一.简介 它提供一种轻量级的数据存储方式,通过eidt()方法来修改里面的内容,通过Commit()方法来提交修改后的内容. 二.重要方法 public abstract boole

  • Android sharedPreferences实现记住密码功能

    实现记住密码功能,供大家参考,具体内容如下 编写界面交互代码: package com.example.bz0209.login; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.support.v7.app.AppCompatActivity; import android.os.Bund

  • Android开发笔记SQLite优化记住密码功能

    本文实例为大家分享了Android SQLite优化记住密码功能的具体代码,供大家参考,具体内容如下 package com.example.alimjan.hello_world; /** * Created by alimjan on 7/4/2017. */ import com.example.alimjan.hello_world.bean.UserInfo; import com.example.alimjan.hello_world.dataBase.UserDBHelper; i

  • Android SharedPreferences实现记住密码和自动登录界面

    SharedPreferences介绍: SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置参数,它是采用xml文件存放数据的,文件存放在"/data/data<package name>/shared_prefs"目录下. SharedPreferences的用法: 由于SharedPreferences是一个接口,而且在这个接口里没有提供写入数据和读取数据的能力.但它是通过其Editor接口中的一些方法来操作Shared

  • Android实现登录界面记住密码的存储

    Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入.所以比较适合我们今天做的这个项目.我们来看一下运行图: 一.布局界面 1.login_top.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.a

  • Android 使用SharedPreferrences储存密码登录界面记住密码功能

    Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入.所以比较适合我们今天做的这个项目.我们来看一下运行图: 一.布局界面 1.login_top.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.a

随机推荐