
com.github.jobs.utils.TextWatcherAdapter Maven / Gradle / Ivy
package com.github.jobs.utils;
import android.text.Editable;
import android.text.TextWatcher;
/**
* @author cristian
*/
public class TextWatcherAdapter implements TextWatcher {
public void afterTextChanged(Editable s) {
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy