博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(转)[原] Android 自定义View 密码框 例子
阅读量:5870 次
发布时间:2019-06-19

本文共 1345 字,大约阅读时间需要 4 分钟。

遵从准则

暴露您view中所有影响可见外观的属性或者行为。

  • 通过XML添加和设置样式
  • 通过元素的属性来控制其外观和行为,支持和重要事件交流的事件监听器

详细步骤见:

样子

支持的样式

可以通过XML定义影响外边和行为的属性如下

边框圆角值,边框颜色,分割线颜色,边框宽度,密码长度,密码大小,密码颜色

 

同时支持原来EditText功能,可以获得数据值,数字键盘设置等

绘制逻辑的主要代码

protected void onDraw(Canvas canvas) {    int width = getWidth();    int height = getHeight();     // 外边框    RectF rect = new RectF(0, 0, width, height);    borderPaint.setColor(borderColor);    canvas.drawRoundRect(rect, borderRadius, borderRadius, borderPaint);     // 内容区    RectF rectIn = new RectF(rect.left + defaultContMargin, rect.top + defaultContMargin,            rect.right - defaultContMargin, rect.bottom - defaultContMargin);    borderPaint.setColor(Color.WHITE);    canvas.drawRoundRect(rectIn, borderRadius, borderRadius, borderPaint);     // 分割线    borderPaint.setColor(borderColor);    borderPaint.setStrokeWidth(defaultSplitLineWidth);    for (int i = 1; i < passwordLength; i++) {        float x = width * i / passwordLength;        canvas.drawLine(x, 0, x, height, borderPaint);    }     // 密码    float cx, cy = height/ 2;    float half = width / passwordLength / 2;    for(int i = 0; i < textLength; i++) {        cx = width * i / passwordLength + half;        canvas.drawCircle(cx, cy, passwordWidth, passwordPaint);    }}

 

完整代码下载

转载地址:http://pcxnx.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
PHP - 如何打印函数调用树
查看>>
js闭包
查看>>
寒假。3.3.G - Common Child (最大公共子序)
查看>>
052(四十二)
查看>>
设计模式学习笔记--原型模式
查看>>
.Net 通过MySQLDriverCS操作MySQL
查看>>
JS Cookie
查看>>
ubuntu Unable to locate package sysv-rc-conf
查看>>
http讲解
查看>>
测试常用脚本
查看>>
笔记:认识.NET平台
查看>>
简单的jdk代理与cglib代理Demo
查看>>
数据挖掘概念与技术笔记
查看>>
获取时间和日期
查看>>
cocos2d中CCAnimation的使用(cocos2d 1.0以上版本)
查看>>
MySQL 5.6查看数据库的大小
查看>>
android addCategory()等说明
查看>>
django信号
查看>>
java基础之反射---重要
查看>>