一个可控长度,带下划线的自定义Edittext

看到带下划线的Edittext,估计大家会嗤之以鼻,Edittext本就自带下划线,但我要实现的是下划线是有间隔的。我们先看看效果,如果觉得有值得学习的地方再往下看,省得浪费时间。


下划线EdittextView.jpg

相信各位看官看了效果,应该不会觉得那么简单了吧,但其实也不难。我们可以通过继承Edittext自定义View来实现。为啥非得继承Edittext呢?原因很简单,系统提供的Edittext可以获取键盘的输入,省去了我们不少麻烦事。开始我也是想通过继承View来实现的,显得更高大上,有逼可装。但在适配过程中发现,国内有的手机厂商的手机我们是监听不到用户键盘点击事件的,除了删除等一些公用的(估计是为了用户信息安全考虑),因此也就放弃了这种实现方式。啰嗦了半天,现在我们正式进入正题(下面是实现核心代码):

private void init(AttributeSet attrs) {
    density = getContext().getResources().getDisplayMetrics().density;
    initDefaultAttributes();
    initCustomAttributes(attrs);
    initDataStructures();
    initPaint();
}

private void initDataStructures() {
    underlines = new Underline[underlineAmount];
}

private void initPaint() {
    underlinePaint = new Paint();
    underlinePaint.setColor(underlineColor);
    underlinePaint.setStrokeWidth(underlineStrokeWidth);
    underlinePaint.setStyle(Paint.Style.STROKE);
    textPaint = new Paint();
    textPaint.setTextSize(textSize);
    textPaint.setColor(textColor);
    textPaint.setAntiAlias(true);
    textPaint.setTextAlign(Paint.Align.CENTER);
    backgroundPaint = new Paint();
    backgroundPaint.setColor(backgroundColor);
}

@Override
protected void onSelectionChanged(int selStart, int selEnd) {
    super.onSelectionChanged(selStart, selEnd);
    if (selStart == selEnd){
        //使光标一直处于文末
        setSelection(getText().length());
    }
}

//设置下划线数量
public void setCodes(int codes) {
    underlineAmount = codes;
    initDataStructures();
}

private void initCustomAttributes(AttributeSet attrs) {
    TypedArray attributes = getContext().obtainStyledAttributes(attrs, R.styleable.EditTextView);
    try {
        underlineColor = attributes.getColor(R.styleable.EditTextView_underline_color, underlineColor);
        underlineAmount = attributes.getInt(R.styleable.EditTextView_codes, underlineAmount);
        textColor = attributes.getInt(R.styleable.EditTextView_text_color, textColor);
        textSize = attributes.getDimension(R.styleable.EditTextView_text_size, textSize);
        backgroundColor = attributes.getColor(R.styleable.EditTextView_background_color, backgroundColor);
    } finally {
        attributes.recycle();
    }
}

private void initDefaultAttributes() {
    underlineStrokeWidth = 2 * density;
    underlineWidth = 35 * density;
    underlineReduction = 5 * density;
    textSize = 15 * density;
    textMarginBottom = 15 * density;
    underlineColor = Color.parseColor("#cccccc");
    textColor = Color.parseColor("#000000");
    viewHeight = 50 * density;
    underlineAmount = DEFAULT_CODES;
    backgroundColor = Color.parseColor("#ffffff");
}

@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged((int) ((underlineWidth + underlineReduction) * underlineAmount - underlineReduction), (int) viewHeight, oldw, oldh);
    height = h;
    width = w;
    initRect();
    initUnderline();
}

private void initRect() {
    rectBackground = new RectF(0, 0, width, height);
}


@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    setMeasuredDimension((int) ((underlineWidth + underlineReduction) * underlineAmount - underlineReduction), (int) viewHeight);
}

private void initUnderline() {
    for (int i = 0; i < underlineAmount; i++) {
        underlines[i] = createPath(i, underlineWidth);
    }
}

private Underline createPath(int position, float sectionWidth) {
    float fromX = (sectionWidth + underlineReduction) * (float) position;
    return new Underline(fromX, height, fromX + sectionWidth, height);
}

@Override
protected void onDraw(Canvas canvas) {
    //绘制白色背景将原有edittext遮住
    canvas.drawRect(rectBackground, backgroundPaint);
    for (int i = 0; i < underlines.length; i++) {
        Underline sectionpath = underlines[i];
        float fromX = sectionpath.getFromX();
        float fromY = sectionpath.getFromY();
        float toX = sectionpath.getToX();
        float toY = sectionpath.getToY();
        drawSection(fromX, fromY, toX, toY, canvas);
    }
    for (int i = 0; i < textLength; i++) {
        drawCharacter(underlines[i].getFromX(), underlines[i].getToX(), getText().toString().charAt(i), canvas);
    }
}

//绘制下划线
private void drawSection(float fromX, float fromY, float toX, float toY, Canvas canvas) {
    Paint paint = underlinePaint;
    canvas.drawLine(fromX, fromY, toX, toY, paint);
}

//绘制文字
private void drawCharacter(float fromX, float toX, Character character, Canvas canvas) {
    float actualWidth = toX - fromX;
    float centerWidth = actualWidth / 2;
    float centerX = fromX + centerWidth;
    canvas.drawText(String.valueOf(character), centerX, height - textMarginBottom, textPaint);
}

@Override
protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
    super.onTextChanged(text, start, lengthBefore, lengthAfter);
    this.textLength = text.toString().length();
    Editable text1 = getText();
    if (text1.length() > underlineAmount){
        setText(text1.subSequence(0, underlineAmount));
        this.textLength = underlineAmount;
    }
}
    /**
     * 下划线
     */
    class Underline {

        float fromX;
        float fromY;
        float toX;
        float toY;

        public Underline() {
        }

        public Underline(float fromX, float fromY, float toX, float toY) {
            this.fromX = fromX;
            this.fromY = fromY;
            this.toX = toX;
            this.toY = toY;
        }

        public void from(float x, float y) {
            this.fromX = x;
            this.fromY = y;
        }

        public void to(float x, float y) {
            this.toX = x;
            this.toY = y;
        }

        public float getFromX() {
            return fromX;
        }

        public void setFromX(float fromX) {
            this.fromX = fromX;
        }

        public float getFromY() {
            return fromY;
        }

        public void setFromY(float fromY) {
            this.fromY = fromY;
        }

        public float getToX() {
            return toX;
        }

        public void setToX(float toX) {
            this.toX = toX;
        }

        public float getToY() {
            return toY;
        }

        public void setToY(float toY) {
            this.toY = toY;
        }
    }
<declare-styleable name="EditTextView">
    <!--下划线颜色-->
    <attr name="underline_color" format="color" />
    <!--文字颜色-->
    <attr name="text_color" format="color" />
    <!--下划线数量-->
    <attr name="codes" format="integer" />
    <!--字体大小-->
    <attr name="text_size" format="dimension"/>
    <!--背景颜色-->
    <attr name="background_color" format="color"/>
</declare-styleable>

没错就是这么简单,一个能够控制输入数量、下划线颜色可设置且携带所有Edittext属性的自定义View就这么实现了。若要查看源码可访问我的仓库。欢迎Star、Fork或者有更好的实现方式的建议可在下面留言,谢谢。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容