Create TextWatcher stub

This commit is contained in:
TacoTheDank
2021-08-07 17:08:28 -04:00
parent 7d5b2f8dc8
commit 03e638786b
3 changed files with 24 additions and 51 deletions

View File

@@ -0,0 +1,15 @@
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) { }
}