Initial commit
This commit is contained in:
30
sources/com/ubt/jimu/base/impl/TextWatcherImpl.java
Normal file
30
sources/com/ubt/jimu/base/impl/TextWatcherImpl.java
Normal file
@@ -0,0 +1,30 @@
|
||||
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) {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user