android邮箱限制输入xml,Android 最简单的限制输入方式之一

原标题:Android 最简单的限制输入方式之一

0f969df2f9b3fd9b18546b7e816bed10.gif

今天带来工作中的一个小安利,产品要求对用户名输入需要限制,只能是数字和字母,符号,不能包含空格和键盘上输入的emoji.开始拿到这个需求,觉得给 EditText 增加一个 addTextChangedListener ,里面做各种判断不就OK 啦!

哈哈,又可以愉快的玩耍咯…

但是回调里面逻辑太多,看着也不爽,不符合我们程序员的气质,简洁大方,干净利落!所以我特意去看了 du 了一下, 结合自己的实际要求,重写了 EditText 的 onCreateInputConnection() 方法,在那里做文章,请看下面源码(如果还有不清楚的,可以留言或者看Github地址)

只需要自定义EditText重写其onCreateInputConnection()方法,然后再定义一个内部类就好,下面代码即拷即用

首先,看看 LimitEditText

classLimitEditText(context: Context, attrs: AttributeSet, defStyleAttr: Int)

: EditText(context, attrs, defStyleAttr) {

constructor(context: Context, attrs: AttributeSet) : this(context, attrs, 0)

/**

* 输入法

*/

overridefunonCreateInputConnection(outAttrs: EditorInfo?): InputConnection {

returnInnerInputConnection( super.onCreateInputConnection(outAttrs), false)

}

}

classInnerInputConnection(target: InputConnection, mutable: Boolean)

: InputConnectionWrapper(target, mutable) {

// 数字,字母

privatevalpattern = Pattern.compile( "^[0-9A-Za-z_]$")

// 标点

privatevalpatternChar = Pattern.compile( "[^ws]+")

// EmoJi

privatevalpatternEmoJi = Pattern.compile( "[ud83cudc00-ud83cudfff]|[ud83dudc00-ud83dudfff]|[u2600-u27ff]", Pattern.UNICODE_CASE or Pattern.CASE_INSENSITIVE)

// 英文标点

privatevalpatternEn = Pattern.compile( "^[`~!@#$%^&*()_-+=<>?:"{},./;'[]]$")

// 中文标点

privatevalpatternCn = Pattern.compile( "^[·!#¥(——):;“”‘、,|《。》?、【】[]]$")

// 对输入拦截

overridefuncommitText(text: CharSequence?, newCursorPosition: Int): Boolean{

if(patternEmoJi.matcher(text).find()){

returnfalse

}

if(pattern.matcher(text).matches() || patternChar.matcher(text).matches()) {

returnsuper.commitText(text, newCursorPosition)

}

returnfalse

}

}

总计60行代码,可以搞定一般需求啦,再来看看其布局用法(xml文件),平时怎么在布局写EditText,还是怎么写!

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

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

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context="cn.molue.jooyer.limitedittext.MainActivity">

android:id="@+id/let_main"

android:layout_width="match_parent"

android:layout_height="50dp"

android:layout_margin="10dp"

android:text="Hello World!"

app:layout_constraintLeft_toLeftOf="parent"

app:layout_constraintRight_toRightOf="parent"

app:layout_constraintTop_toTopOf="parent"/>

最后来看看在 Activity 中用法,其实和一般普通 EditText 用法一致啦!

classMainActivity: AppCompatActivity() {

overridefunonCreate(savedInstanceState: Bundle?){

super.onCreate(savedInstanceState)

setContentView(R.layout.activity_main)

// demo 中默认 LimitEditText 只能输入字母数字和标点符号

// 延时主要是更方便观察

window.decorView.postDelayed({

// 注意,获得焦点需要自己再处理下,其实很简单,如下:

let_main.isFocusable = true

let_main.isFocusableInTouchMode = true

let_main.requestFocus()

}, 1000)

}

}

当然,这些限制正则也可以在 LimitEditText 中定义方法,大家需要什么加入什么就好了!

作者:天星技术团队

链接:https://juejin.im/post/5be45876f265da616413820b

责任编辑:

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值