-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathVerificationAction.java
62 lines (49 loc) · 1.32 KB
/
VerificationAction.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.jkb.vcedittext;
import android.support.annotation.ColorRes;
/**
* 填写验证码支持的Action
* Created by yj on 2017/5/11.
*/
public interface VerificationAction {
/**
* 设置位数
*/
void setFigures(int figures);
/**
* 设置验证码之间的间距
*/
void setVerCodeMargin(int margin);
/**
* 设置底部选中状态的颜色
*/
void setBottomSelectedColor(@ColorRes int bottomSelectedColor);
/**
* 设置底部未选中状态的颜色
*/
void setBottomNormalColor(@ColorRes int bottomNormalColor);
/**
* 设置选择的背景色
*/
void setSelectedBackgroundColor(@ColorRes int selectedBackground);
/**
* 设置底线的高度
*/
void setBottomLineHeight(int bottomLineHeight);
/**
* 设置当验证码变化时候的监听器
*/
void setOnVerificationCodeChangedListener(OnVerificationCodeChangedListener listener);
/**
* 验证码变化时候的监听事件
*/
interface OnVerificationCodeChangedListener {
/**
* 当验证码变化的时候
*/
void onVerCodeChanged(CharSequence s, int start, int before, int count);
/**
* 输入完毕后的回调
*/
void onInputCompleted(CharSequence s);
}
}