A SecurityKeyBoard for Android. Supporting three kinds of keyboard: Letter, Number, Symbol.
中文版
Step 1. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.onlyloveyd:LazyKeyboard:v1.3'
}
Step 1. Add SecurityEditText into your layout
Step 2. init SecurityKeyboard with the layout contains SecurityEditText
SecurityConfigure configure = new SecurityConfigure()
.setDefaultKeyboardType(KeyboardType.NUMBER)
.setLetterEnabled(false);
securityKeyboard = new SecurityKeyboard(binding.loginLayout, configure);
项目地址:https://github.com/onlyloveyd/LazyKeyboard