Skip to content

Удаление символа в слоте #58

Open
MATPOCKIH opened this issue Jan 14, 2021 · 0 comments
Open

Удаление символа в слоте #58

MATPOCKIH opened this issue Jan 14, 2021 · 0 comments

Comments

@MATPOCKIH
Copy link

Здравствуйте, можно ли как-то добиться результата, чтобы определенный символ в слоте просто удалялся?
Это нужно для того, чтобы телефонной маске +7 (###) ###-##-## в слоте 4 удалять введенные пользователем цифры 7 и 8.

Сейчас настройка поля следующая:

    val slots = Slot.copySlotArray(RUS_PHONE_NUMBER)
    slots[1].setValueInterpreter(ValueInterpreter { character ->
        if (character == null) {
            return@ValueInterpreter null
        }
        if (character == '8') '7' else character
    })
    slots[3].flags = slots[3].flags or Slot.RULE_FORBID_CURSOR_MOVE_LEFT
    val newMask = MaskImpl(slots, true)
    newMask.isShowingEmptySlots = true
    newMask.isHideHardcodedHead = true
    val watcher = MaskFormatWatcher(newMask)

    watcher.installOnAndFill(editText)
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

1 participant