PinEntryView
PinEntryView copied to clipboard
Add inputtype numberPassword
In order to help users created harder password, we want to set the inputtype to numberpassword. This will show a keyboard with letters underneath the numbers so that users can create passwords with 'words ' as well
I checked out the code and i can add
<enum name="numberPassword" value="16" />
to the pinInputType enum but i neem to also add the class and im not quite sure how to do that. The goal is to get the following:
.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_PASSWORD); where the 2nd inputtype is in this case the number 16
+1
Need to have the input type as numberPassword