mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
15 lines
400 B
Kotlin
15 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) {
|
|
}
|
|
}
|