欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android仿支付宝手势密码解锁功能

时间:2021-02-03 18:26:53|栏目:Android代码|点击:

Starting

创建手势密码可以查看 CreateGestureActivity.java 文件.

登陆验证手势密码可以看 GestureLoginActivity.java 文件.

Features

使用了 JakeWharton/butterknife butterknife

使用了 ACache 来存储手势密码

/** 
 * 保存手势密码 
 */
 
private void saveChosenPattern(List<LockPatternView.Cell> cells) 
{ 
 byte[] bytes = LockPatternUtil.patternToHash(cells);
 aCache.put(Constant.GESTURE_PASSWORD, bytes);
}

Warning: 使用 ACache 类保存密码并不是无限期的. 具体期限可以查看 ACache 类.

使用了 SHA 算法保存手势密码

/** 
 * Generate an SHA-1 hash for the pattern.
 * Not the most secure, but it is at 
 * least a second level of protection. First level is that the file is in a 
 * location only readable by the system process.*
 * @param pattern 
 * @return the hash of the pattern in a byte array. 
 */
public static byte[] patternToHash(List<LockPatternView.Cell> pattern)
 { 
  if (pattern == null) {  
   return null;
  } else { 
   int size = pattern.size();  
   byte[] res = new byte[size]; 
   for (int i = 0; i < size; i++) {  
    LockPatternView.Cell cell = pattern.get(i);
    res[i] = (byte) cell.getIndex();
   }  
   MessageDigest md = null;
   try {
    md = MessageDigest.getInstance("SHA-1");   
    return md.digest(res);
    } catch (NoSuchAlgorithmException e) {
    e.printStackTrace();   
    return res;
   }
  }
 }

可以开启震动模式,当选中一个圈的时候,手机会震动

/** * Set whether the view will use tactile feedback. 
 *If true, there will be 
 * tactile feedback as the user enters the pattern. 
 * @param tactileFeedbackEnabled Whether tactile feedback is enabled 
 */
 
public void setTactileFeedbackEnabled(boolean tactileFeedbackEnabled) {
 mEnableHapticFeedback = tactileFeedbackEnabled;
}

可以开启绘制路径隐藏模式

/** 
 * Set whether the view is in stealth mode. If true, there will be no 
 * visible feedback as the user enters the pattern. 
 * @param inStealthMode Whether in stealth mode. 
 */public void setInStealthMode(boolean inStealthMode) {
 mInStealthMode = inStealthMode;
}

Example

上一篇:A10_DatePicker的对话框设置(使用OnDateSetListener监听器)

栏    目:Android代码

下一篇:android listview 水平滚动和垂直滚动的小例子

本文标题:Android仿支付宝手势密码解锁功能

本文地址:http://www.codeinn.net/misctech/56282.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有