国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android仿支付寶手勢密碼解鎖功能

2019-12-12 04:28:39
字體:
來源:轉載
供稿:網友

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

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 贵州省| 迁安市| 电白县| 南宫市| 牙克石市| 探索| 太保市| 广宗县| 五大连池市| 璧山县| 固原市| 宝坻区| 宁武县| 长寿区| 红安县| 措勤县| 西充县| 三穗县| 巨野县| 浦东新区| 桦南县| 博乐市| 大冶市| 柯坪县| 九江市| 昌图县| 长沙县| 台湾省| 潍坊市| 兴业县| 理塘县| 民勤县| 静宁县| 桃源县| 阿拉善右旗| 奉化市| 库车县| 张家港市| 镇坪县| 铜陵市| 汉沽区|