decoro icon indicating copy to clipboard operation
decoro copied to clipboard

Android library designed for automatic formatting of text input by custom rules

Results 23 decoro issues
Sort by recently updated
recently updated
newest added

1. В вики написано: > Пример 2. Создание MaskFormatWatcher с raw-маской и отображением _ на местах для ввода: > Slot[] slots = new UnderscoreDigitSlotsParser().parseSlots("___ ___ ___"); > Mask mask =...

Настроил слот для ввода гос-номера автомобиля, вот так: ``` public final class AdditionalPredefinedSlots { public static final Slot[] CAR_NUMBER_STANDARD = { carNumberLetter(), PredefinedSlots.hardcodedSlot(' ').withTags(Slot.TAG_DECORATION), PredefinedSlots.digit(), PredefinedSlots.digit(), PredefinedSlots.digit(), PredefinedSlots.hardcodedSlot(' ').withTags(Slot.TAG_DECORATION), carNumberLetter(),...

Падение воспроизводится при двух условиях: в маске есть буквы, на редактируемом поле не отключены "suggestion". Достаточно просто заполнить поле и начать удалять символы, пока не дойдем до буквы из маски....