31 lines
821 B
Java
31 lines
821 B
Java
package com.ubt.jimu.base.impl;
|
|
|
|
import android.text.Editable;
|
|
import android.text.TextWatcher;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class TextWatcherImpl implements TextWatcher {
|
|
@Override // android.text.TextWatcher
|
|
public void afterTextChanged(Editable editable) {
|
|
textChanged(editable);
|
|
}
|
|
|
|
@Override // android.text.TextWatcher
|
|
public void beforeTextChanged(CharSequence charSequence, int i, int i2, int i3) {
|
|
}
|
|
|
|
@Override // android.text.TextWatcher
|
|
public void onTextChanged(CharSequence charSequence, int i, int i2, int i3) {
|
|
if (i == 0 && i2 == 0 && i3 == 0) {
|
|
return;
|
|
}
|
|
textChanged(charSequence);
|
|
}
|
|
|
|
public void textChanged(Editable editable) {
|
|
}
|
|
|
|
public void textChanged(CharSequence charSequence) {
|
|
}
|
|
}
|