Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liuguangli/VerificationCodeInput
简洁验证码输入框,能自定义输入框个数和样式
https://github.com/liuguangli/VerificationCodeInput
Last synced: 3 months ago
JSON representation
简洁验证码输入框,能自定义输入框个数和样式
- Host: GitHub
- URL: https://github.com/liuguangli/VerificationCodeInput
- Owner: liuguangli
- License: mit
- Created: 2017-03-02T02:19:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T08:49:55.000Z (over 5 years ago)
- Last Synced: 2024-06-16T06:38:23.905Z (5 months ago)
- Language: Java
- Size: 791 KB
- Stars: 495
- Watchers: 7
- Forks: 120
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-android-ui - VerificationCodeInput - 简洁验证码输入框 (其他)
README
# VerificationCodeInput
[![](https://jitpack.io/v/liuguangli/VerificationCodeInput.svg)](https://jitpack.io/#liuguangli/VerificationCodeInput)简洁验证码输入框,能自定义输入框个数和样式。
![](https://github.com/liuguangli/VerificationCodeInput/blob/master/verification1.gif)
# How to use
监听输入完成:
VerificationCodeInput input = (VerificationCodeInput) findViewById(R.id.verificationCodeInput);
input.setOnCompleteListener(new VerificationCodeInput.Listener() {
@Override
public void onComplete(String content) {
Log.d(TAG, "完成输入:" + content);
}
});你还可以为输入框定义自己的样式,指定属性 box_bg_normal 和 box_bg_focus:
自定义个数,指定属性 box:
自定义输入类型:指定属性 inputType:
![](https://github.com/liuguangli/VerificationCodeInput/blob/master/verification.gif)
# Gradle dependenciesAdd it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependencydependencies {
compile 'com.github.liuguangli:VerificationCodeInput:1.6'}
# MIT
MIT License
Copyright (c) 2017 刘光利
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.