效果圖如下,大家感覺不錯(cuò)請(qǐng)參考實(shí)現(xiàn)代碼
private void setGesturePassword() { toggleMore.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { // UIUtils.toast("開啟了手勢(shì)密碼", false); // sp.edit().putBoolean("isOpen", true).commit(); String inputCode = sp.getString("inputCode", ""); if (TextUtils.isEmpty(inputCode)) {//之前沒有設(shè)置過 new AlertDialog.Builder(MoreFragment.this.getActivity()) .setTitle("設(shè)置手勢(shì)密碼") .setMessage("是否現(xiàn)在設(shè)置手勢(shì)密碼") .setPositiveButton("確定", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { UIUtils.toast("現(xiàn)在設(shè)置手勢(shì)密碼", false); sp.edit().putBoolean("isOpen", true).commit(); // toggleMore.setChecked(true); //開啟新的activity: ((BaseActivity) MoreFragment.this.getActivity()).goToActivity(GestureEditActivity.class, null); } }) .setNegativeButton("取消", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { UIUtils.toast("取消了現(xiàn)在設(shè)置手勢(shì)密碼", false); sp.edit().putBoolean("isOpen", false).commit(); toggleMore.setChecked(false); } }) .show(); } else { UIUtils.toast("開啟手勢(shì)密碼", false); sp.edit().putBoolean("isOpen", true).commit(); // toggleMore.setChecked(true); } } else { UIUtils.toast("關(guān)閉了手勢(shì)密碼", false); sp.edit().putBoolean("isOpen", false).commit(); // toggleMore.setChecked(false); } } }); } private void resetGesture() { tvMoreReset.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { boolean checked = toggleMore.isChecked(); if (checked) { ((BaseActivity) MoreFragment.this.getActivity()).goToActivity(GestureEditActivity.class, null); } else { UIUtils.toast("手勢(shì)密碼操作已關(guān)閉,請(qǐng)開啟后再設(shè)置", false); } } }); }
分享文章:Android手勢(shì)密碼--設(shè)置和校驗(yàn)功能的實(shí)現(xiàn)代碼-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://jinyejixie.com/article16/ddshdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營(yíng)銷推廣、網(wǎng)站內(nèi)鏈、標(biāo)簽優(yōu)化、域名注冊(cè)、電子商務(wù)、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容