16 lines
400 B
Kotlin
16 lines
400 B
Kotlin
package eu.kanade.tachiyomi.widget
|
|
|
|
import android.text.Editable
|
|
import android.text.TextWatcher
|
|
|
|
open class SimpleTextWatcher : TextWatcher {
|
|
override fun beforeTextChanged(text: CharSequence, start: Int, count: Int, after: Int) {
|
|
}
|
|
|
|
override fun onTextChanged(text: CharSequence, start: Int, before: Int, count: Int) {
|
|
}
|
|
|
|
override fun afterTextChanged(text: Editable) {
|
|
}
|
|
}
|