Android中EditText的filter过滤(kotlin版)
最近写文字老是用kotlin是因为用了kotlin再也不想用java了这里写了一个用于过滤空格和换行的,其中注释说明了每一个参数的意义class SpaceAndLineInputFilter : InputFilter { override fun filter( source: CharSequence?,//即将要输入的字符串 start: Int,//source的start end: Int,//source的end .