導航:首頁 > 操作系統 > android手勢解鎖源碼

android手勢解鎖源碼

發布時間:2023-01-19 22:00:50

『壹』 android開發 怎樣鎖屏並設置解鎖密碼

Android設置鎖屏密碼的方法:

1.首先,需要找到系統自帶應用設置。

通過以上步驟輕松給android手機設置鎖屏密碼。

『貳』 安卓手機怎麼設置pin碼

安卓手機設置pin碼的步驟具體如下:



1.進入手機的設置界面,找到【安全】設置項,點擊進入。

2.在安全設置頁面中可以設置【屏幕鎖定】的安全措施,點擊進入【屏幕鎖定】。

3.在【選擇鎖屏方式】中,可以選擇圖案解鎖、PIN碼解鎖或密碼解鎖等。先來設置PIN碼解鎖,點擊【PIN】。

4.在【更改解鎖PIN】設置中,可以輸入自己的PIN碼,點擊【確定】。

5.回到安全設置界面,可以看到當前的屏幕鎖定的方式是【使用PIN碼設置安全保護】。

6.關閉屏幕,之後重新打開屏幕,輸入剛才設置好的PIN碼嘗試解鎖。

安卓手機設置手勢解鎖步驟具體如下:

1.點擊安全進入密碼設置。

2.選擇鎖屏方式為【繪制屏幕解鎖圖案】。

3.根據步驟提醒,繪制喜歡的圖案,確認圖案鎖屏之後,即可設置成功。

『叄』 如何用微信小程序開發手勢解鎖

整個功能基於canvas實現,首先添加畫布組件,並設定樣式
<!--index.wxml--><view class="container">
<canvas canvas-id="id-gesture-lock" class="gesture-lock" bindtouchstart="onTouchStart"
bindtouchmove="onTouchMove" bindtouchend="onTouchEnd"></canvas></view>.gesture-lock {
margin: 100rpx auto;
width: 300px;
height: 300px;
background-color: #ffffff;
}123456789101112

手勢解鎖實現代碼在gesture_lock.js中(完整源碼地址見末尾)。
初始化
constructor(canvasid, context, cb, opt){ this.touchPoints = []; this.checkPoints = []; this.canvasid = canvasid; this.ctx = context; this.width = opt && opt.width || 300; //畫布長度
this.height = opt && opt.height || 300; //畫布寬度
this.cycleNum = opt && opt.cycleNum || 3; this.radius = 0; //觸摸點半徑
this.isParamOk = false; this.marge = this.margeCircle = 25; //觸摸點及觸摸點和畫布邊界間隔
this.initColor = opt && opt.initColor || '#C5C5C3';
this.checkColor = opt && opt.checkColor || '#5AA9EC'; this.errorColor = opt && opt.errorColor || '#e19984'; this.touchState = "unTouch"; this.checkParam(); this.lastCheckPoint = null; if (this.isParamOk) { // 計算觸摸點的半徑長度
this.radius = (this.width - this.marge * 2 - (this.margeCircle * (this.cycleNum - 1))) / (this.cycleNum * 2) this.radius = Math.floor(this.radius); // 計算每個觸摸點的圓心位置
this.calCircleParams();
} this.onEnd = cb; //滑動手勢結束時的回調函數
}

主要設置一些參數,如canvas的長寬,canvas的context,手勢鎖的個數(3乘3, 4乘4),手勢鎖的顏色,手勢滑動結束時的回調函數等。並計算出手勢鎖的半徑。
計算每個手勢鎖的圓心位置
calCircleParams() { let n = this.cycleNum; let count = 0; for (let i = 0; i < n; i++) { for (let j = 0; j < n; j++){
count++; let touchPoint = {
x: this.marge + i * (this.radius * 2 + this.margeCircle) + this.radius,
y: this.marge + j * (this.radius * 2 + this.margeCircle) + this.radius,
index: count,
check: "uncheck",
} this.touchPoints.push(touchPoint)
}
}
}1234567891011121314151617

繪制手勢鎖
for (let i = 0; i < this.touchPoints.length; i++){ this.drawCircle(this.touchPoints[i].x, this.touchPoints[i].y, this.radius, this.initColor)
} this.ctx.draw(true);1234

接下來就是識別用戶的滑動行為,判斷用戶劃過了哪些圓圈,進而識別出用戶的手勢。
在touchstart和touchmove事件中檢測觸發並更新畫布
onTouchStart(e) { // 不識別多點觸控
if (e.touches.length > 1){ this.touchState = "unTouch"; return;
} this.touchState = "startTouch"; this.checkTouch(e); let point = {x:e.touches[0].x, y:e.touches[0].y}; this.drawCanvas(this.checkColor, point);
}

onTouchMove(e) { if (e.touchState === "unTouch") { return;
} if (e.touches.length > 1){ this.touchState = "unTouch"; return;
} this.checkTouch(e); let point = {x:e.touches[0].x, y:e.touches[0].y}; this.drawCanvas(this.checkColor, point);
}

檢測用戶是否劃過某個圓圈
checkTouch(e) { for (let i = 0; i < this.touchPoints.length; i++){ let point = this.touchPoints[i]; if (isPointInCycle(e.touches[0].x, e.touches[0].y, point.x, point.y, this.radius)) { if (point.check === 'uncheck') { this.checkPoints.push(point); this.lastCheckPoint = point;
}
point.check = "check"
return;
}
}
}12345678910111213

更新畫布
drawCanvas(color, point) { //每次更新之前先清空畫布
this.ctx.clearRect(0, 0, this.width, this.height); //使用不同顏色和形式繪制已觸發和未觸發的鎖
for (let i = 0; i < this.touchPoints.length; i++){ let point = this.touchPoints[i]; if (point.check === "check") { this.drawCircle(point.x, point.y, this.radius, color); this.drawCircleCentre(point.x, point.y, color);
} else { this.drawCircle(this.touchPoints[i].x, this.touchPoints[i].y, this.radius, this.initColor)
}
} //繪制已識別鎖之間的線段
if (this.checkPoints.length > 1) { let lastPoint = this.checkPoints[0]; for (let i = 1; i < this.checkPoints.length; i++) { this.drawLine(lastPoint, this.checkPoints[i], color);
lastPoint = this.checkPoints[i];
}
} //繪制最後一個識別鎖和當前觸摸點之間的線段
if (this.lastCheckPoint && point) { this.drawLine(this.lastCheckPoint, point, color);
} this.ctx.draw(true);
}2728

當用戶滑動結束時調用回調函數並傳遞識別出的手勢
onTouchEnd(e) { typeof this.onEnd === 'function' && this.onEnd(this.checkPoints, false);
}

onTouchCancel(e) { typeof this.onEnd === 'function' && this.onEnd(this.checkPoints, true);
}1234567

重置和顯示手勢錯誤
gestureError() { this.drawCanvas(this.errorColor)
}

reset() { for (let i = 0; i < this.touchPoints.length; i++) { this.touchPoints[i].check = 'uncheck';
} this.checkPoints = []; this.lastCheckPoint = null; this.drawCanvas(this.initColor);
}123456789101112

如何調用
在onload方法中創建lock對象並在用戶觸摸事件中調用相應方法
onLoad: function () {
var s = this; this.lock = new Lock("id-gesture-lock", wx.createCanvasContext("id-gesture-lock"), function(checkPoints, isCancel) {
console.log('over');
s.lock.gestureError();
setTimeout(function() {
s.lock.reset();
}, 1000);
}, {width:300, height:300}) this.lock.drawGestureLock();
console.log('onLoad') var that = this
//調用應用實例的方法獲取全局數據
app.getUserInfo(function(userInfo){
//更新數據
that.setData({
userInfo:userInfo
})
that.update()
})
},
onTouchStart: function (e) {
this.lock.onTouchStart(e);
},
onTouchMove: function (e) {
this.lock.onTouchMove(e);
},
onTouchEnd: function (e) {
this.lock.onTouchEnd(e);
}

『肆』 Android 求幫忙寫個安卓密碼鎖屏源碼,要附加一個按鈕在右上角解鎖的

去慕課網上面 有視頻教程。

閱讀全文

與android手勢解鎖源碼相關的資料

熱點內容
怎麼在安卓手機登繪旅人 瀏覽:404
桌面文件全部加密 瀏覽:401
6s怎麼外接u盤需要什麼app 瀏覽:131
linux查看文件許可權命令 瀏覽:685
安卓手游存檔怎麼用 瀏覽:761
linuxyum安裝ftp 瀏覽:690
村委會主任可以推行政命令嗎 瀏覽:102
電腦文件夾封面多張圖片 瀏覽:263
網吧總伺服器叫什麼 瀏覽:922
多個演算法解決同一個問題 瀏覽:455
小車解壓後我的購車發票呢 瀏覽:977
做app開發用什麼雲伺服器 瀏覽:177
linux網卡子介面 瀏覽:985
21歲職高畢業學程序員怎麼學 瀏覽:321
vs如何對單個文件編譯 瀏覽:6
為什麼有的電腦不能安裝python 瀏覽:75
金蝶迷你版加密狗檢測到過期 瀏覽:186
硬體描述語言編譯結果 瀏覽:655
程序員逆天改命 瀏覽:19
金斗雲伺服器 瀏覽:447