我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android怎么实现九宫格图案解锁

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android怎么实现九宫格图案解锁

今天小编给大家分享一下Android怎么实现九宫格图案解锁的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

效果图如下:

Android怎么实现九宫格图案解锁

第一步

自定义九宫格View。

public class LockPatterView extends View {    private static final int POINT_SIZE = 5;    private Point[][] points = new Point[3][3];    private boolean isInit,isSelect,isFinish,movePoint;    private Matrix matrix = new Matrix();    private float width,height,offstartX,offstartY,moveX,moveY;;    private Bitmap bitmap_pressed,bitmap_normal,bitmap_error,bitmap_line,bitmap_line_error;    private Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);    private List<Point> pointList = new ArrayList<Point>();    private OnPatterChangeLister onPatterChangeLister;    public LockPatterView(Context context, AttributeSet attrs, int defStyle) {        super(context, attrs, defStyle);    }    public LockPatterView(Context context, AttributeSet attrs) {        super(context, attrs);    }    public LockPatterView(Context context) {        super(context);    }    @Override    protected void onDraw(Canvas canvas) {        if (!isInit) {            initPoints();        }        points2Canvas(canvas);        if (pointList.size() > 0) {            Point a = pointList.get(0);            for (int i = 0; i < pointList.size(); i++) {                Point b = pointList.get(i);                line2Canvas(canvas, a, b);                a = b;            }            if (movePoint) {                line2Canvas(canvas, a, new Point(moveX, moveY));            }        }    }        private void points2Canvas(Canvas canvas) {        for (int i = 0; i < points.length; i++) {            for (int j = 0; j < points[i].length; j++) {                Point point = points[i][j];                if (point.state == Point.STATE_PRESSED) {                    canvas.drawBitmap(bitmap_pressed, point.x - bitmap_normal.getWidth()/2, point.y - bitmap_normal.getHeight() / 2, paint);                }else if (point.state == Point.STATE_ERROR) {                    canvas.drawBitmap(bitmap_error, point.x - bitmap_normal.getWidth()/2, point.y - bitmap_normal.getHeight() / 2, paint);                }else{                    canvas.drawBitmap(bitmap_normal, point.x - bitmap_normal.getWidth()/2, point.y - bitmap_normal.getHeight() / 2, paint);                }            }        }    }        public void line2Canvas(Canvas canvas,Point a,Point b){        float linelength = (float) Point.distance(a, b);        float degress = getDegrees(a,b);        canvas.rotate(degress, a.x, a.y);        if (a.state == Point.STATE_PRESSED) {            matrix.setScale(linelength / bitmap_line.getWidth(), 1);            matrix.postTranslate(a.x, a.y);            canvas.drawBitmap(bitmap_line, matrix, paint);        }else{            matrix.setScale(linelength / bitmap_line.getWidth(), 1);            matrix.postTranslate(a.x, a.y);            canvas.drawBitmap(bitmap_line_error, matrix, paint);        }        canvas.rotate(-degress, a.x, a.y);    }    public float getDegrees(Point pointA, Point pointB) {        return (float) Math.toDegrees(Math.atan2(pointB.y - pointA.y, pointB.x - pointA.x));    }        private void initPoints() {        width = getWidth();        height = getHeight();        if (width > height) {            offstartX = (width - height) / 2;            width = height;        }else{            offstartY = (height - width) / 2;            height = width;        }        bitmap_normal = BitmapFactory.decodeResource(getResources(), R.mipmap.normal);        bitmap_pressed = BitmapFactory.decodeResource(getResources(), R.mipmap.press);        bitmap_error = BitmapFactory.decodeResource(getResources(), R.mipmap.error);        bitmap_line = BitmapFactory.decodeResource(getResources(), R.mipmap.line_normal);        bitmap_line_error = BitmapFactory.decodeResource(getResources(), R.mipmap.line_error);        points[0][0] = new Point(offstartX + width / 4,offstartY + height / 4);        points[0][1] = new Point(offstartX + width / 2,offstartY + height / 4);        points[0][2] = new Point(offstartX + width - width / 4,offstartY + height / 4);        points[1][0] = new Point(offstartX + width / 4,offstartY + width / 2);        points[1][1] = new Point(offstartX + width / 2,offstartY + width / 2);        points[1][2] = new Point(offstartX + width - width / 4,offstartY + width / 2);        points[2][0] = new Point(offstartX + width / 4,offstartY + width - width / 4);        points[2][1] = new Point(offstartX + width / 2,offstartY + width - width / 4);        points[2][2] = new Point(offstartX + width - width / 4,offstartY + width - width / 4);        isInit = true;    }    @Override    public boolean onTouchEvent(MotionEvent event) {        moveX = event.getX();        moveY = event.getY();        movePoint = false;        isFinish = false;        Point point = null;        switch (event.getAction()) {        case MotionEvent.ACTION_DOWN:            if (onPatterChangeLister != null) {                onPatterChangeLister.onPatterStart(true);            }            resetPoint();            point = chechSelectPoint();            if (point != null) {                isSelect = true;            }            break;        case MotionEvent.ACTION_MOVE:            if (isSelect) {                point = chechSelectPoint();                if (point == null) {                    movePoint = true;                }            }            break;        case MotionEvent.ACTION_UP:            isFinish = true;            isSelect = false;            break;        }        if (!isFinish && isSelect && point != null) {            if (crossPoint(point)) {                movePoint = true;            }else{                point.state = Point.STATE_PRESSED;                pointList.add(point);            }        }        if (isFinish) {            if (pointList.size() == 1) {                errorPoint();            }else if(pointList.size() < POINT_SIZE && pointList.size() > 0 ){                 errorPoint();                 if (onPatterChangeLister != null) {                        onPatterChangeLister.onPatterChange(null);                    }            }else{                if (onPatterChangeLister != null) {                    String pass = "";                    for (int i = 0; i < pointList.size(); i++) {                        pass = pass + pointList.get(i).index;                    }                    if (!TextUtils.isEmpty(pass)) {                        onPatterChangeLister.onPatterChange(pass);                    }                }            }        }        postInvalidate();        return true;    }        private boolean crossPoint(Point point){        if (pointList.contains(point)) {            return true;        }else{            return false;        }    }        public void resetPoint(){        for (int i = 0; i < pointList.size(); i++) {            Point point = pointList.get(i);            point.state = Point.STATE_NORMAL;        }        pointList.clear();    }        public void errorPoint(){        for (Point point : pointList) {            point.state = Point.STATE_ERROR;        }    }        private Point chechSelectPoint(){        for (int i = 0; i < points.length; i++) {            for (int j = 0; j < points[i].length; j++) {                Point point = points[i][j];                if (Point.with(point.x, point.y, bitmap_normal.getWidth() / 2, moveX, moveY)) {                    return point;                }            }        }        return null;    }    public static class Point{        public static int STATE_NORMAL = 0;        public static int STATE_PRESSED = 1;        public static int STATE_ERROR = 2;        public float x,y;        public int index = 0,state = 0;        public Point(){};        public Point(float x,float y){            this.x = x;            this.y = y;        }                public static double distance(Point a,Point b){            return Math.sqrt(Math.abs(a.x - b.x) * Math.abs(a.x - b.x) + Math.abs(a.y - b.y) * Math.abs(a.y - b.y)) ;        }                public static boolean with(float paintX,float pointY,float r,float moveX,float moveY){            return Math.sqrt((paintX - moveX) * (paintX - moveX) + (pointY - moveY) * (pointY - moveY)) < r ;        }    }}

第二步

编写布局文件activity_main.xml,在主布局文件中引入自定义的View。

<?xml version="1.0" encoding="utf-8"?><RelativeLayout    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">    <com.newdegree.mylock.LockPatterView        android:layout_width="match_parent"        android:layout_height="wrap_content"/></RelativeLayout>

最后,运行程序就能看到九宫格图案了。

以上就是“Android怎么实现九宫格图案解锁”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android怎么实现九宫格图案解锁

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android怎么实现九宫格图案解锁

今天小编给大家分享一下Android怎么实现九宫格图案解锁的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。效果图如下:1. 第
2023-07-02

Android怎么实现九宫格解锁

这篇文章主要介绍Android怎么实现九宫格解锁,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!首先理清一下逻辑,我们要做NxN的九宫格 下图是3x3的简单图例// -(--)-(--)-(--)-// -(--)-(
2023-05-30

轻松实现Android自定义九宫格图案解锁

Android实现九宫格图案解锁,自带将图案转化成数字密码的功能,代码如下: LockPatternView.javapackage com.jackie.lockpattern; import android.content.Conte
2022-06-06

Android实现九宫格解锁的方法

相信大家都有使用九宫格解锁,比如在设置手机安全项目中,可以使用九宫格解锁,提高安全性,以及在使用支付功能的时候,为了提高安全使用九宫锁,今天就为大家介绍Android实现九宫格的方法,分享给大家供大家参考。具体如下: 运行效果截图如下:具体
2022-06-06

轻松实现安卓(Android)九宫格解锁

效果图思路 首先我们来分析一下实现九宫格解锁的思路:当用户的手指触摸到某一个点时,先判断该点是否在九宫格的某一格范围之内,若在范围内,则该格变成选中的状态;之后用户手指滑动的时候,以该格的圆心为中心,用户手指为终点,两点连线。最后当用户手指
2022-06-06

Android怎么绘制九宫格解锁控件

这篇“Android怎么绘制九宫格解锁控件”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Android怎么绘制九宫格解锁控件
2023-06-29

Android自定义控件实现九宫格解锁功能

最终Android九宫格解锁效果如下1.进行定义实体point点public class Point { private float x; private float y; //正常模式 public static final int NO
2023-05-31

Android 仿小米锁屏实现九宫格解锁功能(无需图片资源)

最近公司要求做个九宫格解锁,本人用的是小米手机,看着他那个设置锁屏九宫格很好看,就做了该组件,不使用图片资源,纯代码实现。 尊重每个辛苦的博主,在http://blog.csdn.net/mu399/article/details/387
2022-06-06

iOS实现九宫格连线手势解锁

本文实例为大家分享了iOS实现九宫格连线手势解锁的具体代码,供大家参考,具体内容如下 Demo下载地址:手势解锁 效果图:核心代码:// // ClockView.m // 手势解锁 // // Created by llkj on 201
2022-05-17

Android自定义view实现滑动解锁九宫格控件

这篇文章主要介绍了Android自定义view实现滑动解锁九宫格控件,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
2023-02-09

怎么在Android 应用中实现一个九宫格手势锁

怎么在Android 应用中实现一个九宫格手势锁?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。主要的方法是重写View.onTouchEvent( Motion
2023-05-31

使用Android自定义控件实现滑动解锁九宫格

本文概述: 滑动解锁九宫格的分析: 1、需要自定义控件; 2、需要重写事件onTouchEvent(); 3、需要给九个点设置序号和坐标,这里用Map类就行; 4、需要判断是否到滑到过九点之一,并存储滑到过的点的序号,而且需要一个
2022-06-06

android 九宫格滑动解锁开机实例源码学习

效果图由于网站占时不能上传,以后补上。 NinePointLineView.java 代码如下: package org.demo.custon_view; import org.demo.utils.MLog; import andro
2022-06-06

使用python怎么实现一个九宫格图片

这篇文章给大家介绍使用python怎么实现一个九宫格图片,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。python的数据类型有哪些?python的数据类型:1. 数字类型,包括int(整型)、long(长整型)和flo
2023-06-14

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录