Android自定义View获取输入法(自定义密码组件)

前言


有些需求需要我们自定义的View有接收系统键盘输入数据的能力,并且在特定的区域中显示出来。如带方框的密码输入控件,它将输入的文字分隔开显示,而EditView显然是做不到的,所以需要自己去自定义一个View。那么我们应该如何获取虚拟键盘的输入数据呢?通常我们只使用到EditView和TextView可以接收输入数据,其实只要是View的子类都可以接收,只要重写Api 中的两个方法,onCheckIsTextEditor 和 onCreateInputConnection。其实Android中的虚拟键盘和我们的应用程序都是在不同的进程中运行的我们可以使用InputConnection这个类去接收虚拟键盘的数据。

 

先看下效果图

当然这里只是因为我设置了背景为一个圆的图片,并且设置了为密码形式,这个都是可忽略的,你可以设置为颜色、图片,也可以自己去画出你想要的item背景。

思路:(一般我先想控件的基础功能、然后才是其他的,毕竟基础功能都实现不了的话,就没必要做下面的了)

1.获取焦点、打开软键盘

2.获取输入法输入的内容

3.画出内容,背景

开始码代码吧。。。

1.在按下后获取焦点,拿起时打开软键盘

@Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                setFocusableInTouchMode(true); //important
                setFocusable(true);
                requestFocus();
                return true;
            case MotionEvent.ACTION_UP:
                try {
                    InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
                    imm.showSoftInput(this, InputMethodManager.RESULT_SHOWN);
                    imm.restartInput(this);
                } catch (Exception ignore) {
                }
                break;
        }

        return super.onTouchEvent(event);
    }


2.需要获得输入功能并接收输入法输入内容,需要重写onCheckIsTextEditor,onCreateInputConnection方法。有点长所以等着再贴、、、

/*
    * 设置View为可输入
    * */
    @Override
    public boolean onCheckIsTextEditor() {
        return true;
    }
    /*
    * 输入法输入内容的桥梁
    * */
    @Override
    public InputConnection onCreateInputConnection(EditorInfo outAttrs) {}

实现了这两个方法,基本就只剩下将输入内容绘画到画布中了、、

3.画文字和item的背景,都需要计算画它们的位置,item的话因为可以是颜色和图片,所以分成画图片和画矩形。

   private void drewText(Canvas canvas) {
        if(currentIndex== 0)
            return;
        mPaint.setColor(textColor);
        mPaint.setStrokeWidth(0);
        mPaint.setTypeface(Typeface.DEFAULT);
        mPaint.setTextSize(textSize * 2);
        mText=isPassword?getText().replaceAll(".","*"):getText();
        float y=getMeasuredHeight()/2+textSize;
        //计算有多少个item的内容
        int items=currentIndex%itemLength==0?currentIndex/itemLength:currentIndex/itemLength+1;
        
        for(int i=0;i<items;i++){
            String text=i==items-1?mText.substring(i*itemLength,currentIndex):mText.substring(i*itemLength,(i+1)*itemLength);
            float x=(itemWidth+dividerWidth)*i+(itemWidth-mPaint.measureText(text))/2;
            canvas.drawText(text,x,y,mPaint);
        }
    }
    private void drawItem(Canvas canvas) {
        //background包括color和Drawable,这里分开取值
        Bitmap bitmap=null;
        if (itemBackGround instanceof ColorDrawable) {
            ColorDrawable colordDrawable = (ColorDrawable) itemBackGround;
            int color = colordDrawable.getColor();
            mPaint.setColor(color);
        } else {
            bitmap = ((BitmapDrawable) itemBackGround).getBitmap();
        }
        for (int i = 1; i <= itemNumber; i++) {
            if(bitmap!=null) {
                Rect bitRect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
                Rect canRect = new Rect((int) ((i - 1) * dividerWidth + itemWidth * (i - 1)), 0, (int) (itemWidth * i + (i - 1) * dividerWidth), getMeasuredHeight());
                canvas.drawBitmap(bitmap, bitRect, canRect, mPaint);
            }else {
                canvas.drawRect((i - 1) * dividerWidth + itemWidth * (i - 1), 0, itemWidth * i + (i - 1) * dividerWidth, getMeasuredHeight(), mPaint);
            }
        }
    }

 

。。。。。。

算了。不知道咋讲了,如果有兴趣知道更多的话可以去看下面两个链接的内容,我都是从那里挖来的、、、

Android自定义View链接系统输入法(自定义验证码组件)

Android之自定义View来接收输入法输入的内容

 

 

 

下面就贴下全部的代码。

attrs.xml自定义的属性

    <declare-styleable name="CustomInputView">
        <attr name="dividerWidth" format="dimension"/>
        <attr name="itemWidth" format="dimension"/>
        <attr name="itemBackground" format="reference|color"/>
        <attr name="itemNumber" format="integer"/>
        <attr name="itemLength" format="integer"/>
        <attr name="isPassword" format="boolean" />
        <attr name="inputType" format="integer"/>

        <attr name="textColor"/>
        <attr name="textSize"/>

    </declare-styleable>

    <attr name="textColor" format="color"/>
    <attr name="textSize" format="dimension" />

CustomInputView.java 

package com.zpp.demo.widget;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.Typeface;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.text.InputType;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.view.View;
import android.view.inputmethod.BaseInputConnection;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputConnection;
import android.view.inputmethod.InputMethodManager;

import com.zpp.demo.R;

public class CustomInputView extends View {
    private final String TAG="CustomInputView";


    private float itemWidth;//每个格子的宽度
    private int itemNumber;//多少个格子
    private int itemLength;//每个格子里的文字长度
    private Drawable itemBackGround;//格子背景
    private float dividerWidth;//分隔线宽度
    private String mText;//文字内容
    private boolean isPassword;//是否是密码形式
    private float textSize;//字体大小
    private int textColor;//文字颜色

    private Paint mPaint;

    private int inputType;//输入的类型
    private int currentIndex;
    private int inputLength;
    private String[] values;
    private InputCompleteListener completeListener;

    public CustomInputView(Context context) {
        this(context,null);
    }

    public CustomInputView(Context context, AttributeSet attrs) {
        this(context, attrs,0);
    }

    public CustomInputView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        final float scale = context.getResources().getDisplayMetrics().density;

        TypedArray a=context.obtainStyledAttributes(attrs,R.styleable.CustomInputView);
        itemWidth=a.getDimension(R.styleable.CustomInputView_itemWidth,40*scale);

        itemBackGround=a.getDrawable(R.styleable.CustomInputView_itemBackground);
        itemNumber=a.getInt(R.styleable.CustomInputView_itemNumber,4);
        itemLength=a.getInt(R.styleable.CustomInputView_itemLength,2);
        dividerWidth=a.getDimension(R.styleable.CustomInputView_dividerWidth,5*scale);
        isPassword=a.getBoolean(R.styleable.CustomInputView_isPassword,true);
        textSize=a.getDimension(R.styleable.CustomInputView_textSize,14*scale);
        textColor=a.getColor(R.styleable.CustomInputView_textColor,Color.BLACK);
        inputType = a.getInt(R.styleable.CustomInputView_inputType, InputType.TYPE_CLASS_TEXT);//TYPR_NULL
        currentIndex = 0;
        inputLength = itemLength*itemNumber;
        values=new String[inputLength];


        //抗锯齿画笔
        mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        //防止边缘锯齿
        mPaint.setAntiAlias(true);
        //需要重写onDraw就得调用此
        this.setWillNotDraw(false);
    }


    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        mText=getText();

        //画格子
        drawItem(canvas);
        
        //画文字
        drewText(canvas);
    }

    private void drewText(Canvas canvas) {
        if(currentIndex== 0)
            return;
        mPaint.setColor(textColor);
        mPaint.setStrokeWidth(0);
        mPaint.setTypeface(Typeface.DEFAULT);
        mPaint.setTextSize(textSize * 2);
        mText=isPassword?getText().replaceAll(".","*"):getText();
        float y=getMeasuredHeight()/2+textSize;
        //计算有多少个item的内容
        int items=currentIndex%itemLength==0?currentIndex/itemLength:currentIndex/itemLength+1;

        for(int i=0;i<items;i++){
            String text=i==items-1?mText.substring(i*itemLength,currentIndex):mText.substring(i*itemLength,(i+1)*itemLength);
            float x=(itemWidth+dividerWidth)*i+(itemWidth-mPaint.measureText(text))/2;
            canvas.drawText(text,x,y,mPaint);
        }
    }
    private void drawItem(Canvas canvas) {
        //background包括color和Drawable,这里分开取值
        Bitmap bitmap=null;
        if (itemBackGround instanceof ColorDrawable) {
            ColorDrawable colordDrawable = (ColorDrawable) itemBackGround;
            int color = colordDrawable.getColor();
            mPaint.setColor(color);
        } else {
            bitmap = ((BitmapDrawable) itemBackGround).getBitmap();
        }
        for (int i = 1; i <= itemNumber; i++) {
            if(bitmap!=null) {
                Rect bitRect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
                Rect canRect = new Rect((int) ((i - 1) * dividerWidth + itemWidth * (i - 1)), 0, (int) (itemWidth * i + (i - 1) * dividerWidth), getMeasuredHeight());
                canvas.drawBitmap(bitmap, bitRect, canRect, mPaint);
            }else {
                canvas.drawRect((i - 1) * dividerWidth + itemWidth * (i - 1), 0, itemWidth * i + (i - 1) * dividerWidth, getMeasuredHeight(), mPaint);
            }
        }
    }
/*
 * 光标的闪烁
 * */
//    @Override
//    protected void onAttachedToWindow() {
//        super.onAttachedToWindow();
//        isLive = true;
//        new Thread(() -> {
//            while (isLive) {
//                if (hasFocus()) {
//                    isShowCursor = !isShowCursor;
//                    postInvalidate();
//                } else {
//                    isShowCursor = false;
//                }
//                try {
//                    Thread.sleep(800);
//                } catch (InterruptedException e) {
//                    e.printStackTrace();
//                }
//            }
//        }).start();
//    }
//
//    @Override
//    protected void onDetachedFromWindow() {
//        super.onDetachedFromWindow();
//        isLive = false;
//    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                setFocusableInTouchMode(true); //important
                setFocusable(true);
                requestFocus();
                return true;
            case MotionEvent.ACTION_UP:
                try {
                    InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
                    imm.showSoftInput(this, InputMethodManager.RESULT_SHOWN);
                    imm.restartInput(this);
                } catch (Exception ignore) {
                }
                break;
        }

        return super.onTouchEvent(event);
    }

    /*
    * 设置View为可输入
    * */
    @Override
    public boolean onCheckIsTextEditor() {
        return true;
    }
    /*
    * 输入法输入内容的桥梁
    * */
    @Override
    public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
        outAttrs.inputType = inputType;
        outAttrs.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI;

        return new BaseInputConnection(this, true) {
            @Override
            public boolean commitText(CharSequence text, int newCursorPosition) {
                if (currentIndex == inputLength) {
                    //isShowCursor = false;
                    return false;
                }
                inputText(text.toString());

                invalidate();
                return true;
            }

            @Override
            public boolean deleteSurroundingText(int beforeLength, int afterLength) {
                for (int i = afterLength; i < beforeLength; i++) {
                    deleteLastText();
                }
                invalidate();
                return true;
            }

            @Override
            public boolean sendKeyEvent(KeyEvent event) {
                if (event.getAction() == KeyEvent.ACTION_UP) {
                    switch (event.getKeyCode()) {
                        case KeyEvent.KEYCODE_DEL:
                            if (currentIndex > 0) {
                                deleteSurroundingText(currentIndex, currentIndex - 1);
                            }
                            break;
                        case KeyEvent.KEYCODE_0:
                            commitText("0", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_1:
                            commitText("1", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_2:
                            commitText("2", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_3:
                            commitText("3", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_4:
                            commitText("4", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_5:
                            commitText("5", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_6:
                            commitText("6", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_7:
                            commitText("7", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_8:
                            commitText("8", currentIndex);
                            break;
                        case KeyEvent.KEYCODE_9:
                            commitText("9", currentIndex);
                            break;
                    }
                }
                return true;
            }
        };
    }

    public void clearInputText() {
        currentIndex = 0;
        values = new String[inputLength];
    }

    public void inputText(String str) {
        values[currentIndex] = str;
        currentIndex++;

        if (completeListener != null) {
            completeListener.onComplete(getText());
        }
        if (currentIndex == inputLength) {
            try {
                //隐藏软键盘
                ((InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(getWindowToken(), 0);
            } catch (Exception ignore) {
            }
        }
    }

    private void deleteLastText() {
        if (currentIndex > 0) {
            currentIndex--;
        }
        values[currentIndex] = null;
        completeListener.onComplete(getText());
    }

    public String[] getValues() {
        return values;
    }

    public String getText() {
        StringBuilder sb = new StringBuilder();
        for (String str : values) {
            if (str != null)
                sb.append(str);
        }
        return sb.toString();
    }

    public void setCompleteListener(InputCompleteListener listener) {
        this.completeListener = listener;
    }
    //输入监听
    public interface InputCompleteListener {
        void onComplete(String values);
    }



    /**
     * view的大小控制
     * 设置其按照内容大小
     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        setMeasuredDimension(measureWidth(widthMeasureSpec),
                measureHeight(heightMeasureSpec));
    }
    private int measureHeight(int measureSpec) {
        int result = (int) itemWidth;
        int mode = MeasureSpec.getMode(measureSpec);
        int size = MeasureSpec.getSize(measureSpec);

        switch (mode) {
            case MeasureSpec.UNSPECIFIED://不指定测量模式,view大小没有限制
            case MeasureSpec.EXACTLY://精确值模式
                result = size;
                break;
            case MeasureSpec.AT_MOST://最大值模式
                result = Math.min(result, size);
                break;
        }
        return result;
    }

    private int measureWidth(int measureSpec) {
        int result = (int) (itemWidth*itemNumber+dividerWidth*(itemNumber-1));
        int mode = MeasureSpec.getMode(measureSpec);
        int size = MeasureSpec.getSize(measureSpec);
        switch (mode) {
            case MeasureSpec.UNSPECIFIED://不指定测量模式,view大小没有限制
            case MeasureSpec.EXACTLY://精确值模式
                result = size;
                break;
            case MeasureSpec.AT_MOST://最大值模式
                result = Math.min(result, size);
                break;
        }
        return result;
    }
}

 

只要可以获取到输入的内容,怎么展示出来都是可以自己画出来的、、、

 

我的github库,写的demo啥的

https://github.com/zpp0203/ZDemo.git

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值