android.text.TextWatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.text;
public interface TextWatcher
extends android.text.NoCopySpan
{
public abstract void beforeTextChanged(java.lang.CharSequence s, int start, int count, int after);
public abstract void onTextChanged(java.lang.CharSequence s, int start, int before, int count);
public abstract void afterTextChanged(android.text.Editable s);
}