Android开发 字母,符号,数字&自定义安全键盘

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Mr___Xu/article/details/81664916

LazyKeyboard

A SecurityKeyBoard for Android. Supporting three kinds of keyboard: Letter, Number, Symbol.

中文版

Installation

Gradle

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'
}

Basic Usage

Step 1. Add SecurityEditText into your layout

   <LinearLayout
        android:id="@+id/container"
        ...">

        <com.gs.keyboard.SecurityEditText
            android:id="@+id/et_security_keyboard"
            android:layout_width="match_parent"
            ... />

        <EditText
            android:id="@+id/et_security_keyboard_two"
            ... />
    </LinearLayout>

Step 2. init SecurityKeyboard with the layout contains SecurityEditText

   SecurityConfigure configure = new SecurityConfigure()
           .setDefaultKeyboardType(KeyboardType.NUMBER)
           .setLetterEnabled(false);
   securityKeyboard = new SecurityKeyboard(binding.loginLayout, configure);

Basic Result

letter symbol number

项目地址:https://github.com/onlyloveyd/LazyKeyboard

猜你喜欢

转载自blog.csdn.net/Mr___Xu/article/details/81664916
今日推荐