短信验证码控件简单实现

第一次在简书上码文章,主要是记录下以后可能会用到的代码,自用顺便提供给可能需要的同学。

一、需求背景

       产品经理突然要求更改短信验证码的样式,觉得验证码输入太过于简单,已经落后市场上其他竞品了,效果图如下:

6位验证码

输入满6位,自动调用接口去验证输入是否正确。验证错误后,验证码变红并提醒用户。允许用户进行删除。

二、简单思路及实现方案

本来是准备使用6个Edittext进行操作,后来研究发现焦点的传递和删除时,处理逻辑过于复杂,后决定使用1个Edittext+6个Textview进行实现,虽然好像感觉有点low,但最快最简单实现不才是我想要的么?直接上代码吧。

1.自定义输入布局(verification_code_layout.xml)

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout

    xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="233dp"

    android:layout_height="wrap_content">

<LinearLayout

        android:id="@+id/ll_code"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:orientation="horizontal">

<LinearLayout

            android:layout_width="27dp"

            android:layout_height="wrap_content"

            android:orientation="vertical">

<TextView

                android:id="@+id/tv_code1"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textColor="#FF303030"

                android:textSize="30dp"

                android:background="@null"

                android:gravity="center"/>

<View

                android:id="@+id/v1"

                android:layout_width="match_parent"

                android:layout_height="2dp"

                android:layout_marginTop="6dp"

                android:background="#FFEFEFEF" />

</LinearLayout>

<LinearLayout

            android:layout_width="27dp"

            android:layout_height="wrap_content"

            android:orientation="vertical"

            android:layout_marginLeft="9dp">

<TextView

                android:id="@+id/tv_code2"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textColor="#FF303030"

                android:textSize="30dp"

                android:background="@null"

                android:gravity="center"/>

<View

                android:id="@+id/v2"

                android:layout_width="match_parent"

                android:layout_height="2dp"

                android:layout_marginTop="6dp"

                android:background="#FFEFEFEF"/>

</LinearLayout>

<LinearLayout

            android:layout_width="27dp"

            android:layout_height="wrap_content"

            android:orientation="vertical"

            android:layout_marginLeft="9dp">

<TextView

                android:id="@+id/tv_code3"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textColor="#FF303030"

                android:textSize="30dp"

                android:background="@null"

                android:gravity="center"/>

<View

                android:id="@+id/v3"

                android:layout_width="match_parent"

                android:layout_height="2dp"

                android:layout_marginTop="6dp"

                android:background="#FFEFEFEF" />

</LinearLayout>

<LinearLayout

            android:layout_width="27dp"

            android:layout_height="wrap_content"

            android:orientation="vertical"

            android:layout_marginLeft="35dp">

<TextView

                android:id="@+id/tv_code4"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textColor="#FF303030"

                android:background="@null"

                android:textSize="30dp"

                android:gravity="center"/>

<View

                android:id="@+id/v4"

                android:layout_width="match_parent"

                android:layout_height="2dp"

                android:layout_marginTop="6dp"

                android:background="#FFEFEFEF" />

</LinearLayout>

<LinearLayout

            android:layout_width="27dp"

            android:layout_height="wrap_content"

            android:orientation="vertical"

            android:layout_marginLeft="9dp">

<TextView

                android:id="@+id/tv_code5"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textColor="#FF303030"

                android:background="@null"

                android:textSize="30dp"

                android:gravity="center"/>

<View

                android:id="@+id/v5"

                android:layout_width="match_parent"

                android:layout_height="2dp"

                android:layout_marginTop="6dp"

                android:background="#FFEFEFEF" />

</LinearLayout>

<LinearLayout

            android:layout_width="27dp"

            android:layout_height="wrap_content"

            android:orientation="vertical"

            android:layout_marginLeft="9dp">

<TextView

                android:id="@+id/tv_code6"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textColor="#FF303030"

                android:background="@null"

                android:textSize="30dp"

                android:gravity="center"/>

<View

                android:id="@+id/v6"

                android:layout_width="match_parent"

                android:layout_height="2dp"

                android:layout_marginTop="6dp"

                android:background="#FFEFEFEF" />

</LinearLayout>

<EditText

        android:id="@+id/et_code"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_alignTop="@+id/ll_code"

        android:layout_alignBottom="@+id/ll_code"

        android:background="@android:color/transparent"

        android:textColor="@android:color/transparent"

        android:cursorVisible="false"

        android:inputType="number"/>

</RelativeLayout>


自定义控件代码实现

import android.content.Context;

import android.graphics.Color;

import android.text.Editable;

import android.text.TextWatcher;

import android.util.AttributeSet;

import android.view.KeyEvent;

import android.view.LayoutInflater;

import android.view.View;

import android.view.inputmethod.InputMethodManager;

import android.widget.EditText;

import android.widget.RelativeLayout;

import android.widget.TextView;

import java.util.ArrayList;

import java.util.List;

/**

* 6位验证码控件实现

*/

public class VerificationCodeViewextends RelativeLayout {

private Context context;

    private TextView tv_code1;

    private TextView tv_code2;

    private TextView tv_code3;

    private TextView tv_code4;

    private TextView tv_code5;

    private TextView tv_code6;

    private View v1;

    private View v2;

    private View v3;

    private View v4;

    private View v5;

    private View v6;

    private EditTextet_code;

    private Listcodes =new ArrayList<>();

    private InputMethodManagerimm;

    public VerificationCodeView(Context context) {

super(context);

        this.context = context;

        loadView();

    }

public VerificationCodeView(Context context, AttributeSet attrs) {

super(context, attrs);

        this.context = context;

        loadView();

    }

public VerificationCodeView(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

        this.context = context;

        loadView();

    }

private void loadView(){

imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);

        View view = LayoutInflater.from(context).inflate(R.layout.verification_code_layout, this);

        initView(view);

        initEvent();

    }

private void initView(View view){

tv_code1 = (TextView) view.findViewById(R.id.tv_code1);

        tv_code2 = (TextView) view.findViewById(R.id.tv_code2);

        tv_code3 = (TextView) view.findViewById(R.id.tv_code3);

        tv_code4 = (TextView) view.findViewById(R.id.tv_code4);

        tv_code5 = (TextView) view.findViewById(R.id.tv_code5);

        tv_code6 = (TextView) view.findViewById(R.id.tv_code6);

        et_code = (EditText) view.findViewById(R.id.et_code);

        v1 = view.findViewById(R.id.v1);

        v2 = view.findViewById(R.id.v2);

        v3 = view.findViewById(R.id.v3);

        v4 = view.findViewById(R.id.v4);

        v5 = view.findViewById(R.id.v5);

        v6 = view.findViewById(R.id.v6);

    }

private void initEvent(){

//验证码输入

        et_code.addTextChangedListener(new TextWatcher() {

@Override

            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

}

@Override

            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {

}

@Override

            public void afterTextChanged(Editable editable) {

if(editable !=null && editable.length()>0) {

et_code.setText("");

                    if(codes.size() <6){

codes.add(editable.toString());

                        showCode();

                    }

}

}

});

        // 监听验证码删除按键

        et_code.setOnKeyListener(new View.OnKeyListener() {

@Override

            public boolean onKey(View view, int keyCode, KeyEvent keyEvent) {

if (keyCode == KeyEvent.KEYCODE_DEL && keyEvent.getAction() == KeyEvent.ACTION_DOWN &&codes.size()>0) {

codes.remove(codes.size()-1);

                    showCode();

                    //删除时重置textview的颜色

                    resetTvColor();

return true;

                }

return false;

            }

});

    }

/**

    * 显示输入的验证码

    */

    private void showCode(){

String code1 ="";

        String code2 ="";

        String code3 ="";

        String code4 ="";

        String code5 ="";

        String code6 ="";

        if(codes.size()>=1){

code1 =codes.get(0);

        }

if(codes.size()>=2){

code2 =codes.get(1);

        }

if(codes.size()>=3){

code3 =codes.get(2);

        }

if(codes.size()>=4){

code4 =codes.get(3);

        }

if (codes.size()>=5){

code5 =codes.get(4);

        }

if (codes.size()>=6){

code6 =codes.get(5);

        }

tv_code1.setText(code1);

        tv_code2.setText(code2);

        tv_code3.setText(code3);

        tv_code4.setText(code4);

        tv_code5.setText(code5);

        tv_code6.setText(code6);

//        setColor();//设置高亮颜色

        callBack();//回调

    }

/**

    * 错误时设置红色

    */

    public void setErrorRedColor(){

tv_code1.setTextColor(getResources().getColor(R.color.red_0xFD4440));

        tv_code2.setTextColor(getResources().getColor(R.color.red_0xFD4440));

        tv_code3.setTextColor(getResources().getColor(R.color.red_0xFD4440));

        tv_code4.setTextColor(getResources().getColor(R.color.red_0xFD4440));

        tv_code5.setTextColor(getResources().getColor(R.color.red_0xFD4440));

        tv_code6.setTextColor(getResources().getColor(R.color.red_0xFD4440));

    }

/**

    * 重置textview的颜色

    */

    public void resetTvColor(){

tv_code1.setTextColor(getResources().getColor(R.color.color_303030));

        tv_code2.setTextColor(getResources().getColor(R.color.color_303030));

        tv_code3.setTextColor(getResources().getColor(R.color.color_303030));

        tv_code4.setTextColor(getResources().getColor(R.color.color_303030));

        tv_code5.setTextColor(getResources().getColor(R.color.color_303030));

        tv_code6.setTextColor(getResources().getColor(R.color.color_303030));

    }

/**

    * 回调

    */

    private void callBack(){

if(onInputListener==null){

return;

        }

if(codes.size()==6){

onInputListener.onSucess(getPhoneCode());

        }else{

onInputListener.onInput();

        }

}

//定义回调

    public interface OnInputListener{

//

void onInputSucess(String code);

        //输入状态

        void onInput();

    }

private OnInputListeneronInputListener;

    public void setOnInputListener(OnInputListener onInputListener){

this.onInputListener = onInputListener;

    }

/**

    * 显示键盘

    */

    public void showSoftInput(){

//显示软键盘

        if(imm!=null &&et_code!=null) {

et_code.postDelayed(new Runnable() {

@Override

                public void run() {

imm.showSoftInput(et_code, 0);

                }

},200);

        }

}

/**

    * 获得手机号验证码

    * @return 验证码

    */

    public String getPhoneCode(){

StringBuilder sb =new StringBuilder();

        for (String code :codes) {

sb.append(code);

        }

return sb.toString();

    }

}


3.自定义控件的使用

verificationCodeView.setOnInputListener(new VerificationCodeView.OnInputListener() {

@Override

    public void onInputInputSucess(String code) {

//输入6个数字后,调用接口查询数据是否正确

    }

@Override

    public void onInput() {

}

});

verificationCodeView.showSoftInput();


实现非常简单,实现方式比较low

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

推荐阅读更多精彩内容