mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-01-15 02:18:01 -05:00
19 lines
428 B
Java
19 lines
428 B
Java
package protect.card_locker;
|
|
|
|
import android.text.Editable;
|
|
import android.text.TextWatcher;
|
|
|
|
public class SimpleTextWatcher implements TextWatcher {
|
|
@Override
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
}
|
|
|
|
@Override
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
}
|
|
|
|
@Override
|
|
public void afterTextChanged(Editable s) {
|
|
}
|
|
}
|