mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-01-14 01:47:56 -05:00
16 lines
416 B
Java
16 lines
416 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) { }
|
|
}
|