Android EditText追加空格、限制字符等方法示例
程序员文章站
2023-01-07 13:59:43
前言
使用输入框时产品常常会有一些需求,比如123456789变成123-456-789或者限制一些字符的输入等等。很多时候都是网上搜索就完事了,但是每次都去搜索有点浪费...
前言
使用输入框时产品常常会有一些需求,比如123456789变成123-456-789或者限制一些字符的输入等等。很多时候都是网上搜索就完事了,但是每次都去搜索有点浪费时间,而且有些也不符合需求。所以自己写一篇,以后就可以吃老本了。????
追加字符
import android.content.context; import android.text.editable; import android.text.textutils; import android.text.textwatcher; import android.util.attributeset; import com.ifreegroup.ebbly.lib_common.utils.applogutil; /** * @describe:自动添加占位符的输入框 * @date: 2019/06/11 * @author: dengkewu * @contact: */ public class placeholderedittext extends android.support.v7.widget.appcompatedittext { //上次输入框中的内容 private string laststring; //光标的位置 private int selectposition; //输入框内容改变监听 private textchangelistener listener; //追加字符 private string item = "-"; public placeholderedittext(context context) { super(context); initview(); } public placeholderedittext(context context, attributeset attrs) { super(context, attrs); initview(); } public placeholderedittext(context context, attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); initview(); } private void initview() { addtextchangedlistener(new textwatcher() { @override public void beforetextchanged(charsequence s, int start, int count, int after) { } /** * 当输入框内容改变时的回调 * @param s 改变后的字符串 * @param start 改变之后的光标下标 * @param before 删除了多少个字符 * @param count 添加了多少个字符 */ @override public void ontextchanged(charsequence s, int start, int before, int count) { //因为重新排序之后settext的存在 //会导致输入框的内容从0开始输入,这里是为了避免这种情况产生一系列问题 if (start == 0 && count > 1 && getselectionstart() == 0) { return; } string texttrim = gettext().tostring().trim(); if (textutils.isempty(texttrim)) { return; } //如果 before >0 && count == 0,代表此次操作是删除操作 if (before > 0 && count == 0) { selectposition = start; if (textutils.isempty(laststring)) { return; } //将上次的字符串去空格 和 改变之后的字符串去空格 进行比较 //如果一致,代表本次操作删除的是空格 if (texttrim.equals(laststring.replaceall(item, ""))) { //帮助用户删除该删除的字符,而不是空格 stringbuilder stringbuilder = new stringbuilder(laststring); stringbuilder.deletecharat(start - 1); selectposition = start - 1; settext(stringbuilder.tostring()); } } else { //此处代表是添加操作 //当光标位于空格之前,添加字符时,需要让光标跳过空格,再按照之前的逻辑计算光标位置 if ((start + count) % 5 == 0) { selectposition = start + count + 1; } else { selectposition = start + count; } } } @override public void aftertextchanged(editable s) { //获取输入框中的内容,不可以去空格 string etcontent = gettext().tostring(); if (textutils.isempty(etcontent)) { if (listener != null) { listener.textchange(""); } return; } //重新拼接字符串 string newcontent = addspacebycredit(etcontent); //保存本次字符串数据 laststring = newcontent; //如果有改变,则重新填充 //防止edittext无限settext()产生死循环 if (!newcontent.equals(etcontent)) { settext(newcontent); try { //保证光标的位置 setselection(selectposition > newcontent.length() ? newcontent.length() : selectposition); } catch (exception e) { //刚好为限制字符的整数倍时添加空格后会出现越界的情况 //applogutil.e("超过限制字符"); } } //触发回调内容 if (listener != null) { listener.textchange(newcontent); } } }); } /** * 输入框内容回调,当输入框内容改变时会触发 */ public interface textchangelistener { void textchange(string text); } public void settextchangelistener(textchangelistener listener) { this.listener = listener; } /** * 每4位添加一个空格 * * @param content * @return */ public string addspacebycredit(string content) { if (textutils.isempty(content)) { return ""; } content = content.replaceall(item, ""); if (textutils.isempty(content)) { return ""; } stringbuilder newstring = new stringbuilder(); for (int i = 1; i <= content.length(); i++) { if (i % 4 == 0 && i != content.length()) { newstring.append(content.charat(i - 1) + item); } else { newstring.append(content.charat(i - 1)); } } return newstring.tostring(); } /** * 获取追加字符前输入内容 * @return */ public string getinputtext() { return gettext().tostring().replaceall(item, ""); } }
核心思路是在文本改变时获取到原字符串取出每一个字符添加上要追加的字符后返回字符串并重新settext。当然中间会有一些坑,比如光标位置、删除时空格要跳过以及删除后会再追加空格会造成死循环的问题。当然这里很多情况已经处理过了,如果有其他需求比如手机号码的111 1111 1111的形式可以修改addspacebycredit这个方法。
限制字符
借鉴博客android edittext限制输入字符的5种实现方式
et_traveler_content.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) { string editable = et_traveler_content.gettext().tostring(); string str = stringfilter(editable.tostring()); if (!editable.equals(str)) { et_traveler_content.settext(str); //设置新的光标所在位置 et_traveler_content.setselection(et_traveler_content.gettext().tostring().length()); } } @override public void aftertextchanged(editable s) { } }); public string stringfilter(string str) { // 只允许字母、数字、英文空白字符 string regex = "[^a-za-z0-9\\s]"; pattern p = pattern.compile(regex); matcher m = p.matcher(str); return m.replaceall(""); }
这里也是输入时做过滤然后重新settext。只要需要对正则表达式熟悉想做什么限制都可以。
md效果
系统自带
<android.support.design.widget.textinputlayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginstart="15dp" android:padding="0dp" android:layout_centervertical="true" android:gravity="center_vertical"> <edittext …… /> </android.support.design.widget.textinputlayout>
只需要用textinputlayout包裹一层便可以实现md效果。
常用属性
1.明文、密文
if (isshowpwd) { // 可视密码输入 setinputtype(editorinfo.type_class_text | editorinfo .type_text_variation_visible_password); } else { // 非可视密码状态 setinputtype(editorinfo.type_class_text | editorinfo.type_text_variation_password); }
2.默认不获取焦点
父容器设置(其实只要布局内有一个控件设置就可以)
android:focusableintouchmode="true"
一些第三方库
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。