Skip to content

когда не вызывается mask.filled() #54

Open
omfg74 opened this issue Sep 8, 2020 · 2 comments
Open

когда не вызывается mask.filled() #54

omfg74 opened this issue Sep 8, 2020 · 2 comments

Comments

@omfg74
Copy link

omfg74 commented Sep 8, 2020

Так и не смог добиться того чтобы возвращалось true. Так же не понятно куда вешать лиснер на это событие

@tralfamadore
Copy link
Contributor

Метод вернет true, когда маска будет заполнена, например, для номера телефона true будет возвращаться если ввод = +7 (123) 456-78-90. Листенер можно повесить на FormatWatcher:

        formatWatcher.setCallback(new FormattedTextChangeListener() {
            @Override
            public boolean beforeFormatting(String oldValue, String newValue) {
                return false;
            }

            @Override
            public void onTextFormatted(FormatWatcher formatter, String newFormattedText) {
                Log.d("TAG", "isFilled = " + formatter.getMask().filled());
            }
        });

@omfg74
Copy link
Author

omfg74 commented Sep 12, 2020

Спасибо за ответ, про коллбэк как раз и хотел узнать

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants