Android 自定义密码输入框

一、前言:

我们在软件开发过程中,经常会遇到密码输入框,这就要我们自定控件来实现,下面的自定义密码框,是参考我的同事写出来的,今天分享一下。

1. gitHub 地址:

2. 效果图如下:

图 1.png
图 2.png
图 3.png
图 4.png

二、使用 :

我只介绍第二种,第一种是弹窗,回调有点多,大家可以下载源码看一下啊。

强大工具类依赖:(自定义布局用不到,用到了弹窗和键盘的显示隐藏)

implementation 'com.blankj:utilcode:1.25.2'

1.TwoActivity调用:

public class TwoActivity extends Activity {

    @BindView(R.id.activationCode)
    ActivationCodeBox activationCode;
    @BindView(R.id.btn_cancel)
    Button btnCancel;
    @BindView(R.id.container)
    LinearLayout container;


    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_two);
        ButterKnife.bind(this);
        initData();
    }

    private void initData() {

        //激活码输入完成
        activationCode.setInputCompleteListener(new ActivationCodeBox.InputCompleteListener() {
            @Override
            public void inputComplete(String code) {
                KeyboardUtils.hideSoftInput(TwoActivity.this);

                //回调进入 Activity
                if (code.equals("1234")) {
                    //激活成功
                    ToastUtils.showShort("激活成功");
                    activationCode.showTip(false, "");
                } else {
                    //激活失败
                    ToastUtils.showShort("激活失败");
                    activationCode.showTip(true, "激活失败");
                }

            }
        });

        //返回上一页
        btnCancel.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                TwoActivity.this.finish();
            }
        });


    }


    /**
     * 页面跳转
     *
     * @param mContext
     */
    public static void launch(Context mContext) {

        Intent intent = new Intent(mContext, TwoActivity.class);
        mContext.startActivity(intent);
    }

2.自定义ActivationCodeBox布局:

public class ActivationCodeBox extends RelativeLayout {
    private Context context;
    private TextView[] textViews;
    private static int MAXlength = 4;
    private TextView tvTip;
    private String inputContent;

    private EditText etCode;
    private List<String> codes = new ArrayList<>();
    private InputMethodManager imm;
    private   Animation shake;
    public ActivationCodeBox(Context context) {
        super(context);
        this.context = context;
        loadView();
    }

    public ActivationCodeBox(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.context = context;
        loadView();
    }

    public ActivationCodeBox(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        this.context = context;
        loadView();
    }

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    public ActivationCodeBox(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
        this.context = context;
        loadView();
    }
    private void loadView(){
        //抖动效果
        shake = AnimationUtils.loadAnimation(context, R.anim.shake);
        imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        View view = LayoutInflater.from(context).inflate(R.layout.activation_code_box, this);
        initView(view);
        initEvent();
    }
    private void initView(View view){
        textViews = new TextView[MAXlength];
        textViews[0] = (TextView) view.findViewById(R.id.tv_code1);
        textViews[1] = (TextView) view.findViewById(R.id.tv_code2);
        textViews[2] = (TextView) view.findViewById(R.id.tv_code3);
        textViews[3] = (TextView) view.findViewById(R.id.tv_code4);
        etCode = (EditText) view.findViewById(R.id.et_code);
        tvTip = (TextView) view.findViewById(R.id.tv_tip);

    }
    private void initEvent(){
        //验证码输入
        etCode.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) {

                inputContent = etCode.getText().toString();
                if (inputCompleteListener != null) {
                    if (inputContent.length() >= MAXlength) {
                        inputCompleteListener.inputComplete(inputContent);
                    }
                }
                for (int i = 0; i < MAXlength; i++) {
                    if (i < inputContent.length()) {
                        textViews[i].setText(String.valueOf(inputContent.charAt(i)));
                    } else {
                        textViews[i].setText("");
                    }
                }


            }
        });

    }

    /**
     * 设置高亮颜色
     */
    private void setColor(boolean isShow, int color){

        for (int i = 0; i <MAXlength ; i++) {
            textViews[i].setTextColor(color);
            if(isShow){
                textViews[i].setBackground(context.getResources().getDrawable(R.drawable.box_red));
                //抖动
                textViews[i].startAnimation(shake);
            }else {
                textViews[i].setBackground(context.getResources().getDrawable(R.drawable.box_blue));

            }
        }

    }
    /**
     * 获得手机号验证码
     * @return 验证码
     */
    public String getPhoneCode(){
        StringBuilder sb = new StringBuilder();
        for (String code : codes) {
            sb.append(code);
        }
        return sb.toString();
    }

    /**
     * 显示提示语
     * @param isShow 是否显示提示语 true 代码验证码错误;false 验证码失败
     * @param content 提示语内容
     */
    public void showTip(boolean isShow,String content){
        tvTip.setVisibility(isShow?VISIBLE:INVISIBLE);
        tvTip.setText(content);
        if(isShow){
            setColor(isShow,context.getColor(R.color.color_ffe93a3a));

        }else{
            setColor(isShow,context.getColor(R.color.btn_press_bg_color));
            etCode.setText("");
            codes.clear();

        }
    }

    private InputCompleteListener inputCompleteListener;
    public void setInputCompleteListener(InputCompleteListener inputCompleteListener) {
        this.inputCompleteListener = inputCompleteListener;
    }
    public interface InputCompleteListener {
        void inputComplete(String code);
    }
}

3.activation_code_box布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:id="@+id/ll_code"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/dp_10"
        android:layout_marginRight="@dimen/dp_10"
        android:orientation="horizontal"
        android:gravity="center"
        >

            <TextView
                android:layout_marginRight="@dimen/dp_8"
                android:id="@+id/tv_code1"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:textColor="@color/color_ff333333"
                android:textSize="@dimen/sp_15"
                android:inputType="text"
                android:background="@drawable/box_blue"
                android:gravity="center"/>



            <TextView
                android:layout_marginRight="@dimen/dp_8"
                android:layout_marginLeft="@dimen/dp_8"
                android:id="@+id/tv_code2"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:textColor="@color/color_ff333333"
                android:textSize="@dimen/sp_15"
                android:inputType="text"
                android:background="@drawable/box_blue"
                android:gravity="center"/>



            <TextView
                android:layout_marginRight="@dimen/dp_8"
                android:layout_marginLeft="@dimen/dp_8"
                android:id="@+id/tv_code3"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:textColor="@color/color_ff333333"
                android:textSize="@dimen/sp_15"
                android:inputType="text"
                android:background="@drawable/box_blue"
                android:gravity="center"/>


            <TextView
                android:layout_marginLeft="@dimen/dp_8"
                android:id="@+id/tv_code4"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:textColor="@color/color_ff333333"
                android:background="@drawable/box_blue"
                android:inputType="text"
                android:textSize="@dimen/sp_15"
                android:gravity="center"/>

    </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="textPassword"
        />
    <TextView
        android:id="@+id/tv_tip"
        android:layout_below="@+id/ll_code"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/dp_8"
        android:textSize="@dimen/sp_15"
        android:textColor="@color/color_ffe93a3a"
        android:maxLines="1"
        android:ellipsize="end"
        android:layout_margin="6dp"
        android:visibility="invisible"
        />
</RelativeLayout>

3.activity_two布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/button_white_fillet_rectangle"
    android:id="@+id/container"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="请输入激活码"
        android:layout_marginTop="15dp"
        android:layout_marginLeft="20dp"
        android:layout_marginBottom="25dp"
        android:textColor="#ff333333"
        android:textSize="18sp"
        android:drawableLeft="@drawable/icon_activation_code"
        android:drawablePadding="5dp"
        />
    <com.function.luo.ui.ActivationCodeBox
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/activationCode"
        android:layout_below="@+id/fpc_1"
        android:layout_marginLeft="@dimen/dp_20"
        android:layout_marginRight="@dimen/dp_20"/>
    <Button
        android:id="@+id/btn_cancel"
        android:layout_width="150dp"
        android:layout_height="35dp"
        android:layout_gravity="center"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="20dp"
        android:background="@drawable/button_selector"
        android:minHeight="0dp"
        android:text="返回上一页"
        android:textColor="@drawable/text_color_selector"
        android:textSize="18sp" />
</LinearLayout>

三、总结 :

布局方式:密码输入框采用的的相对布局,让 LinearLayout 中的四个TextView和EditText的布局重复。监听EditText输入数据,添加到TextView上。

1. 思路:

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

推荐阅读更多精彩内容

  • 效果 自定义密码输入框,项目的一个界面需求,我把这个自定义的输入框提取出来作为这次内容的题目。输入前: 输入后: ...
    cgrass阅读 3,396评论 3 31
  • 1.概述 前一段时间一直在封闭开发,其实技术难度不大,开发也就10天左右,由于产品是新来的,中间需求一变再变...
    点石成金XIAS阅读 5,073评论 0 3
  • 先看最终效果图可在布局文件中配置各种属性,如密码框个数,密码框圆角半径,颜色,中间圆半径和大小,padding值也...
    shada阅读 1,623评论 7 3
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,373评论 0 17
  • 1 主要知识点介绍 乍一看标题,你觉得很简单,你可能心里再想 ——“呵,这么简单的东西有什么看头,谁还不会写个输入...
    CnPeng阅读 3,521评论 0 7