android九宫格锁屏控件使用详解

 更新时间:2022年06月28日 08:51:27   作者:poorSir  
这篇文章主要为大家详细介绍了android九宫格锁屏控件使用,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了android九宫格锁屏控件的具体代码,供大家参考,具体内容如下

代码:

public class LockView extends View {
    //半径
    private int radius;
    //中心小圆半径
    private int smallRadius;
    //一行个数
    private int column;
    //选中颜色
    private int selectColor;
    //未选中颜色
    private int normalColor;
    //阴影颜色
    private int shaderColor;
    //连线的颜色
    private int lineColor;
    //圆线宽
    private int circleStrokeWidth;
    //连线的线宽
    private int lineStrokeWidth;

    private Paint normalPaint;
    private Paint selectPaint;
    private Paint linePaint;
    private Paint centerPaint;
    private int width;
    //每个圆宽度
    private int everyWidth;
    //是否是选中绘制
    private boolean isSelect;
    //所有圆信息
    private List<Point> allCircleList = new ArrayList<>();
    //选中圆的标志
    private List<Integer> selectList = new ArrayList<>();
    //是否是重置
    private boolean isReSet;
    private LockViewFinishListener lockViewFinishListener;

    public LockView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public LockViewFinishListener getLockViewFinishListener() {
        return lockViewFinishListener;
    }

    public void setLockViewFinishListener(LockViewFinishListener lockViewFinishListener) {
        this.lockViewFinishListener = lockViewFinishListener;
    }

    private void init(Context context, AttributeSet attrs) {
        TypedArray typedArray = context.obtainStyledAttributes(attrs,R.styleable.LockView);
        radius = typedArray.getInteger(R.styleable.LockView_lock_radius,100);
        smallRadius = typedArray.getInteger(R.styleable.LockView_smallRadius,30);
        column = typedArray.getInteger(R.styleable.LockView_column,3);
        selectColor =typedArray.getColor(R.styleable.LockView_selectColor,Color.RED);
        normalColor = typedArray.getColor(R.styleable.LockView_lock_normalColor,Color.GRAY);
        shaderColor = typedArray.getColor(R.styleable.LockView_shaderColor,Color.argb(80, 0xff, 0x00, 0x00));
        lineColor = typedArray.getColor(R.styleable.LockView_lineColor,Color.RED);
        circleStrokeWidth = typedArray.getInteger(R.styleable.LockView_circleStrokeWidth,5);
        lineStrokeWidth = typedArray.getInteger(R.styleable.LockView_lineStrokeWidth,15);

        normalPaint = new Paint();
        normalPaint.setColor(normalColor);
        normalPaint.setAntiAlias(false);//设置为无锯齿
        normalPaint.setStrokeWidth(circleStrokeWidth);//线宽
        normalPaint.setStyle(Paint.Style.STROKE);

        selectPaint = new Paint();
        selectPaint.setColor(selectColor);
        selectPaint.setAntiAlias(false);
        selectPaint.setStrokeWidth(circleStrokeWidth);
        selectPaint.setStyle(Paint.Style.STROKE);

        centerPaint = new Paint();
        centerPaint.setColor(selectColor);
        centerPaint.setAntiAlias(false);
        centerPaint.setStrokeWidth(radius - smallRadius);
        centerPaint.setStyle(Paint.Style.FILL_AND_STROKE);

        linePaint = new Paint();
        linePaint.setColor(lineColor);
        linePaint.setAntiAlias(false);//设置为无锯齿
        linePaint.setStrokeWidth(lineStrokeWidth);//线宽
        linePaint.setAlpha(150);
        linePaint.setStyle(Paint.Style.STROKE);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        width = measureWidth(widthMeasureSpec);
        setMeasuredDimension(width, width);
        everyWidth = (width - getPaddingLeft() - getPaddingRight()) / column;
        allCircleList.clear();
        for (int i = 0; i < column; i++) {
            for (int j = 0; j < column; j++) {
                float cx = getPaddingLeft() + everyWidth / 2 * (2 * j + 1);
                float cy = getPaddingTop() + everyWidth / 2 * (2 * i + 1);
                Point point = new Point();
                point.cx = cx;
                point.cy = cy;
                allCircleList.add(point);
            }
        }
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        for (int i = 0; i < allCircleList.size(); i++) {
            Point point = allCircleList.get(i);
            canvas.drawCircle(point.cx, point.cy, radius, normalPaint);
        }
        if (isReSet) {//重置
            isReSet = false;
            postInvalidate();
        } else {
            if (isSelect) {
                for (int i = 0; i < selectList.size(); i++) {
                    int index = selectList.get(i);
                    Point point = allCircleList.get(index);
                    canvas.drawCircle(point.cx, point.cy, radius, selectPaint);
                    Shader mShader = new RadialGradient(point.cx, point.cy, smallRadius, new int[]{selectColor, shaderColor},
                            new float[]{0.9f, 1f}, Shader.TileMode.CLAMP);
                    centerPaint.setShader(mShader);
                    canvas.drawCircle(point.cx, point.cy, smallRadius, centerPaint);
                    if (i >= 1) {
                        int lastIndex = selectList.get(i - 1);
                        Point lastPoint = allCircleList.get(lastIndex);
                        canvas.drawLine(lastPoint.cx, lastPoint.cy, point.cx, point.cy, linePaint);
                    }
                }
            }
        }
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                isReSet = true;
                selectList.clear();

                int index = calculateWhich(event.getX(), event.getY());
                if (index != -1) {
                    selectList.add(index);
                    isSelect = true;
                }
                break;
            case MotionEvent.ACTION_MOVE:
                index = calculateWhich(event.getX(), event.getY());
                if (index != -1) {
                    if (!selectList.contains(index)) {
                        selectList.add(index);
                    }
                }
                break;
            case MotionEvent.ACTION_UP:
                if (lockViewFinishListener != null) {
                    StringBuffer result = new StringBuffer();
                    for (int i = 0; i < selectList.size(); i++) {
                        result.append(selectList.get(i));
                    }
                    lockViewFinishListener.onSuccess(result + "");
                }
                break;
        }
        postInvalidate();
        return true;
    }

    /**
     * 计算控件宽高
     *
     * @param widthMeasureSpec
     * @return
     */
    private int measureWidth(int widthMeasureSpec) {
        int result;
        int specSize = MeasureSpec.getSize(widthMeasureSpec);
        int specMode = MeasureSpec.getMode(widthMeasureSpec);
        if (specMode == MeasureSpec.EXACTLY) {
            result = specSize;
        } else {
            result = getPaddingLeft() + getPaddingRight() + radius * 2 * column ;
            if (specMode == MeasureSpec.AT_MOST) {
                result = Math.min(result, specSize);
            }
        }
        return result;
    }

    /**
     * 计算是在哪个圆中
     *
     * @return
     */
    private int calculateWhich(float lx, float ly) {
        for (int i = 0; i < allCircleList.size(); i++) {
            Point point = allCircleList.get(i);
            if (lx > point.cx - radius && lx < point.cx + radius) {
                if (ly > point.cy - radius && ly < point.cy + radius) {
                    return i;
                }
            }
        }
        return -1;
    }

    public interface LockViewFinishListener {
        void onSuccess(String result);
    }

    private class Point {
        private float cx;
        private float cy;
    }

}
<!--九宫格锁屏控件-->
    <declare-styleable name="LockView">
        <!--大圆半径-->
        <attr name="lock_radius" format="integer"/>
        <!--小圆半径-->
        <attr name="smallRadius" format="integer"/>
        <!--一行个数-->
        <attr name="column" format="integer"/>
        <!--选中颜色-->
        <attr name="selectColor" format="color"/>
        <!--未选中颜色-->
        <attr name="lock_normalColor" format="color"/>
        <!--阴影颜色-->
        <attr name="shaderColor" format="color"/>
        <!--连线的颜色-->
        <attr name="lineColor" format="color"/>
        <!--圆线宽-->
        <attr name="circleStrokeWidth" format="integer"/>
        <!--连线的线宽-->
        <attr name="lineStrokeWidth" format="integer"/>
</declare-styleable>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android App实现闪屏页广告图的全屏显示实例

    Android App实现闪屏页广告图的全屏显示实例

    这篇文章主要为大家介绍了Android App实现闪屏页广告图的全屏显示实例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-08-08
  • Android编程开发之多点触摸(Multitouch)实现方法

    Android编程开发之多点触摸(Multitouch)实现方法

    这篇文章主要介绍了Android编程开发之多点触摸(Multitouch)实现方法,结合实例形式详细分析了Android多点触摸的相关实现步骤与操作技巧,需要的朋友可以参考下
    2016-08-08
  • android实现倒计时动态圈

    android实现倒计时动态圈

    这篇文章主要为大家详细介绍了android实现倒计时动态圈,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-01-01
  • Android学习笔记--Activity中使用Intent传值示例代码

    Android学习笔记--Activity中使用Intent传值示例代码

    Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描述,Android则根据此Intent的描述,负责找到对应的组件,将Intent传递给调用的组件,并完成组件的调用
    2013-06-06
  • Android简单实现 缓存数据

    Android简单实现 缓存数据

    这篇文章主要介绍了Android简单实现 缓存数据,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-11-11
  • RecyclerView设置间距和添加分割线的方法

    RecyclerView设置间距和添加分割线的方法

    在使用RecyclerView布局,经常需要调整间距和添加分割线以达到更美观效果,这篇文章主要介绍了RecyclerView设置间距和添加分割线的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-09-09
  • Android实现获取联系人电话号码功能

    Android实现获取联系人电话号码功能

    这篇文章主要为大家详细介绍了Android实现获取联系人电话号码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • Android GridView扩展仿微信微博发图动态添加删除图片功能

    Android GridView扩展仿微信微博发图动态添加删除图片功能

    这篇文章主要为大家详细介绍了Android GridView扩展仿微信微博发图动态添加删除图片功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-05-05
  • Android禁止横屏竖屏切换的有效方法

    Android禁止横屏竖屏切换的有效方法

    这篇文章主要为大家详细介绍了Android禁止横屏竖屏切换的有效方法,具有一定的实用性,感兴趣的小伙伴们可以参考一下
    2016-08-08
  • Android上传文件到服务端并显示进度条

    Android上传文件到服务端并显示进度条

    这篇文章主要为大家详细介绍了Android上传文件到服务端,并显示进度条,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-11-11

最新评论