discord-jadx/app/src/main/java/androidx/core/widget/TextViewKt$doAfterTextChang...

27 lines
905 B
Java

package androidx.core.widget;
import android.text.Editable;
import android.text.TextWatcher;
import kotlin.jvm.functions.Function1;
/* compiled from: TextView.kt */
public final class TextViewKt$doAfterTextChanged$$inlined$addTextChangedListener$1 implements TextWatcher {
public final /* synthetic */ Function1 $afterTextChanged;
public TextViewKt$doAfterTextChanged$$inlined$addTextChangedListener$1(Function1 function1) {
this.$afterTextChanged = function1;
}
@Override // android.text.TextWatcher
public void afterTextChanged(Editable editable) {
this.$afterTextChanged.invoke(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) {
}
}