doum
6 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package com.doumee.lib_coremodel.view;
 
import android.content.Context;
import android.content.res.TypedArray;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
 
import com.doumee.lib_coremodel.R;
import com.doumee.lib_coremodel.util.DpOrSp2PxUtil;
 
import java.util.ArrayList;
import java.util.List;
 
 
/**
 * 类:PhoneCode
 * 作者: qxc
 * 日期:2018/3/14.
 */
public class PhoneCode extends RelativeLayout {
    private Context context;
    private TextView tv_code1;
    private TextView tv_code2;
    private TextView tv_code3;
    private TextView tv_code4;
    private View v1;
    private View v2;
    private View v3;
    private View v4;
    private EditText et_code;
    private List<String> codes = new ArrayList<>();
    private InputMethodManager imm;
 
    private int textColorNormal;
    private int textColor;
    private int lineColorNormal;
    private int lineColor;
 
    private int d = 0;
 
    public PhoneCode(Context context) {
        super(context);
        this.context = context;
        loadView();
    }
 
    public PhoneCode(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.context = context;
        TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.PhoneCode);
        textColorNormal = ta.getColor(R.styleable.PhoneCode_textColorNormal,0xffE5E5E5 );
        textColor = ta.getColor(R.styleable.PhoneCode_textColor, 0xff70D0D2);
        lineColorNormal = ta.getColor(R.styleable.PhoneCode_lineColorNormal, textColorNormal);
        lineColor = ta.getColor(R.styleable.PhoneCode_lineColor, textColor);
        d = DpOrSp2PxUtil.dp2pxConvertInt(getContext(),1);
        loadView();
    }
 
    private void loadView(){
 
        imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        View view = LayoutInflater.from(context).inflate(R.layout.phone_code, this);
        initView(view);
        initEvent();
    }
 
    private void initView(View view){
        tv_code1 = (TextView) view.findViewById(R.id.tv_code1);
        tv_code2 = (TextView) view.findViewById(R.id.tv_code2);
        tv_code3 = (TextView) view.findViewById(R.id.tv_code3);
        tv_code4 = (TextView) view.findViewById(R.id.tv_code4);
        et_code = (EditText) view.findViewById(R.id.et_code);
        v1 = view.findViewById(R.id.v1);
        v2 = view.findViewById(R.id.v2);
        v3 = view.findViewById(R.id.v3);
        v4 = view.findViewById(R.id.v4);
        tv_code1.setTextColor(textColor);
        tv_code2.setTextColor(textColor);
        tv_code3.setTextColor(textColor);
        tv_code4.setTextColor(textColor);
    }
 
    private void initEvent(){
        //验证码输入
        et_code.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
            }
            @Override
            public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
            }
            @Override
            public void afterTextChanged(Editable editable) {
                if(editable != null && editable.length()>0) {
                    et_code.setText("");
                    if(codes.size() < 4){
                        codes.add(editable.toString());
                        showCode();
                    }
                }
            }
        });
        // 监听验证码删除按键
        et_code.setOnKeyListener(new View.OnKeyListener() {
            @Override
            public boolean onKey(View view, int keyCode, KeyEvent keyEvent) {
                if (keyCode == KeyEvent.KEYCODE_DEL && keyEvent.getAction() == KeyEvent.ACTION_DOWN && codes.size()>0) {
                    codes.remove(codes.size()-1);
                    showCode();
                    return true;
                }
                return false;
            }
        });
    }
 
    /**
     * 显示输入的验证码
     */
    private void showCode(){
        String code1 = "";
        String code2 = "";
        String code3 = "";
        String code4 = "";
        if(codes.size()>=1){
            code1 = codes.get(0);
        }
        if(codes.size()>=2){
            code2 = codes.get(1);
        }
        if(codes.size()>=3){
            code3 = codes.get(2);
        }
        if(codes.size()>=4){
            code4 = codes.get(3);
        }
        tv_code1.setText(code1);
        tv_code2.setText(code2);
        tv_code3.setText(code3);
        tv_code4.setText(code4);
 
        setColor();//设置高亮颜色
        callBack();//回调
    }
 
    public void clearCode(){
        codes.clear();
        showCode();
    }
 
    /**
     * 设置高亮颜色
     */
    private void setColor(){
        v1.setBackgroundColor(lineColorNormal);
        v2.setBackgroundColor(lineColorNormal);
        v3.setBackgroundColor(lineColorNormal);
        v4.setBackgroundColor(lineColorNormal);
        if(codes.size()==1){
            v1.setBackgroundColor(lineColor);
        }
        if(codes.size()==2){
            v1.setBackgroundColor(lineColor);
            v2.setBackgroundColor(lineColor);
        }
        if(codes.size()==3){
            v1.setBackgroundColor(lineColor);
            v2.setBackgroundColor(lineColor);
            v3.setBackgroundColor(lineColor);
        }
        if(codes.size()>=4){
            v1.setBackgroundColor(lineColor);
            v2.setBackgroundColor(lineColor);
            v3.setBackgroundColor(lineColor);
            v4.setBackgroundColor(lineColor);
        }
        setBlod(v1,codes.size()>0);
        setBlod(v2,codes.size()>1);
        setBlod(v3,codes.size()>2);
        setBlod(v4,codes.size()>3);
    }
 
    private void setBlod(View v,boolean isBlod){
        LinearLayout.LayoutParams params= (LinearLayout.LayoutParams) v.getLayoutParams();
        params.height = d * (isBlod?3:1);
        v.setLayoutParams(params);
    }
 
    public void etRequestFocus(){
        et_code.requestFocus();
        showSoftInput();
    }
 
    /**
     * 回调
     */
    private void callBack(){
        if(onInputListener==null){
            return;
        }
        if(codes.size()==4){
            onInputListener.onSucess(getPhoneCode());
        }else{
            onInputListener.onInput();
        }
    }
 
    //定义回调
    public interface OnInputListener{
        void onSucess(String code);
        void onInput();
    }
    private OnInputListener onInputListener;
    public void setOnInputListener(OnInputListener onInputListener){
        this.onInputListener = onInputListener;
    }
 
    /**
     * 显示键盘
     */
    public void showSoftInput(){
        //显示软键盘
        if(imm!=null && et_code!=null) {
            et_code.postDelayed(new Runnable() {
                @Override
                public void run() {
                    imm.showSoftInput(et_code, 0);
                }
            },200);
        }
    }
 
    /**
     * 获得手机号验证码
     * @return 验证码
     */
    public String getPhoneCode(){
        StringBuilder sb = new StringBuilder();
        for (String code : codes) {
            sb.append(code);
        }
        return sb.toString();
    }
}