TextWatcherImpl

open class TextWatcherImpl : TextWatcher

一个简单的 TextWatcher实现,避免直接实现接口需要实现多个方法的麻烦。

Constructors

TextWatcherImpl
Link copied to clipboard
fun TextWatcherImpl()

Functions

afterTextChanged
Link copied to clipboard
open override fun afterTextChanged(s: Editable?)
beforeTextChanged
Link copied to clipboard
open override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int)
equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
onTextChanged
Link copied to clipboard
open override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int)
toString
Link copied to clipboard
open fun toString(): String