Github地址,欢迎点赞,forkphp
今天带来工做中的一个小安利,产品要求对用户名输入须要限制,只能是数字和字母,符号,不能包含空格和键盘上输入的emoji.开始拿到这个需求,以为给 EditText 增长一个 addTextChangedListener ,里面作各类判断不就OK 啦!java
哈哈,又能够愉快的玩耍咯...android
可是回调里面逻辑太多,看着也不爽,不符合咱们程序员的气质,简洁大方,干净利落!因此我特地去看了 du 了一下, 结合本身的实际要求,重写了 EditText 的 onCreateInputConnection() 方法,在那里作文章,请看下面源码(若是还有不清楚的,能够留言或者看Github地址)git
class LimitEditText(context: Context, attrs: AttributeSet, defStyleAttr: Int)
: EditText(context, attrs, defStyleAttr) {
constructor(context: Context, attrs: AttributeSet) : this(context, attrs, 0)
/**
* 输入法
*/
override fun onCreateInputConnection(outAttrs: EditorInfo?): InputConnection {
return InnerInputConnection(super.onCreateInputConnection(outAttrs), false)
}
}
class InnerInputConnection(target: InputConnection, mutable: Boolean)
: InputConnectionWrapper(target, mutable) {
// 数字,字母
private val pattern = Pattern.compile("^[0-9A-Za-z_]\$")
// 标点
private val patternChar = Pattern.compile("[^\\w\\s]+")
// EmoJi
private val patternEmoJi = Pattern.compile("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]", Pattern.UNICODE_CASE or Pattern.CASE_INSENSITIVE)
// 英文标点
private val patternEn = Pattern.compile("^[`~!@#\$%^&*()_\\-+=<>?:\"{},.\\\\/;'\\[\\]]\$")
// 中文标点
private val patternCn = Pattern.compile("^[·!#¥(——):;“”‘、,|《。》?、【】\\[\\]]\$")
// 对输入拦截
override fun commitText(text: CharSequence?, newCursorPosition: Int): Boolean {
if (patternEmoJi.matcher(text).find()){
return false
}
if (pattern.matcher(text).matches() || patternChar.matcher(text).matches()) {
return super.commitText(text, newCursorPosition)
}
return false
}
}
复制代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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">
<cn.molue.jooyer.limitedittext.LimitEditText 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"/>
</android.support.constraint.ConstraintLayout>
复制代码
class MainActivity : AppCompatActivity() {
override fun onCreate(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 中定义方法,你们须要什么加入什么就行了!程序员