文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android 实现仿支付宝的密码均分输入框

2023-05-31 00:51

关注

Android 仿支付宝的密码均分输入框

此为安卓项目,通过重绘edittext进行文字的均分排布。

直接贴上代码:

package com.xxx.xxx;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.graphics.Rect;import android.text.Editable;import android.text.Selection;import android.text.TextWatcher;import android.util.AttributeSet;import android.view.ViewGroup;import android.widget.EditText;public class ExcelEditView extends EditText {  private int mMaxLength = 6;  //一行显示的最大字符数  private int mColorId = Color.BLACK;   //字体颜色  private boolean isPassword = false;  //是否需要显示密码符  private float mHeight = 0.0f;    //默认情况的高度  private int mMaxLine = 0;     //最大的行数:如果为0,---表示支持多行输入  不为0,--则为该行  public ExcelEditView(Context context){    super(context);    init();  }  public ExcelEditView(Context context, AttributeSet set){    super(context, set);    init();  }  private void init(){    this.addTextChangedListener(new TextWatcher() {      @Override      public void beforeTextChanged(CharSequence s, int start, int count, int after) {      }      @Override      public void onTextChanged(CharSequence s, int start, int before, int count) {        // TODO Auto-generated method stub        Editable editable = ExcelEditView.this.getText();        int len = editable.length();        if(mMaxLine > 0 && len > mMaxLength*mMaxLine)        {          int selEndIndex = Selection.getSelectionEnd(editable);          String str = editable.toString();          String newStr = str.substring(0,mMaxLength*mMaxLine);          ExcelEditView.this.setText(newStr);          editable = ExcelEditView.this.getText();          //新字符串的长度          int newLen = editable.length();          //旧光标位置超过字符串长度          if(selEndIndex > newLen)          {            selEndIndex = editable.length();          }          //设置新光标所在的位置          Selection.setSelection(editable, selEndIndex);        }      }      @Override      public void afterTextChanged(Editable s) {      }    });  }  public void setIsPassword(boolean isPassword){    this.isPassword = isPassword;  }  public void setmMaxLine(int line){    this.mMaxLine = line;  }  public void setmMaxLength(int leng){    this.mMaxLength = leng;  }  @Override  public void setTextColor(int color) {    super.setTextColor(color);    mColorId = color;  }  @Override  protected void onDraw(Canvas canvas) {    char[] txt = this.getText().toString().toCharArray();   //取出字符数组    int txtLine = getLineFromCharArray(txt);   //计算有多少行    if (mMaxLine > 0 && txtLine > mMaxLine){ //进行行数的上限处理      txtLine = mMaxLine;    }    if (this.isPassword){  //密码符的转义      for (int i=0; i<txt.length; i++){        txt[i] = '*';      }    }    if (mHeight == 0){   //获取最初控件的高度      mHeight = this.getHeight();    }    float width = this.getWidth();    float height = mHeight * txtLine;    ViewGroup.LayoutParams params = this.getLayoutParams();    params.height = (int)height;    this.setLayoutParams(params);    //动态设置控件高度    float per = width / (mMaxLength+1);     //宽度等分    float perHeight = height / (txtLine + 1);  //高度等分    Paint countPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.DEV_KERN_TEXT_FLAG);    countPaint.setColor(mColorId);    countPaint.setTextSize(this.getTextSize());    countPaint.setTypeface(this.getTypeface());    countPaint.setTextAlign(Paint.Align.CENTER);    Rect textBounds = new Rect();    String numberStr = "1";    countPaint.getTextBounds(numberStr, 0, numberStr.length(), textBounds);//get text bounds, that can get the text width and height    float textHeight = (float)(textBounds.bottom - textBounds.top);    float textWidth = (float)(textBounds.right = textBounds.left);    //计算该控件中能够显示的单一文字的高度和宽度    for (int line = 0; line < txtLine; line++) {      for (int i = 0; i < mMaxLength && txt.length > (i+line*mMaxLength); i++) {        canvas.drawText(String.valueOf(txt[i+line*mMaxLength]), (i + 1) * per - textWidth, perHeight * (line + 1) + textHeight / 2, countPaint);    //进行绘制      }    }  }  private int getLineFromCharArray(char[] txt){    int line = ((txt.length - 1) / mMaxLength) + 1;    return line;  }}

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯