private void findView() {
this.titleText = (TextView) findViewById(R.id.title);
this.password1 = (EditText) findViewById(R.id.password1);
this.password2 = (EditText) findViewById(R.id.password2);
this.password3 = (EditText) findViewById(R.id.password3);
this.password4 = (EditText) findViewById(R.id.password4);
setFocusable(1);
this.password1.setTransformationMethod(PasswordTransformationMethod.getInstance());
this.password2.setTransformationMethod(PasswordTransformationMethod.getInstance());
this.password3.setTransformationMethod(PasswordTransformationMethod.getInstance());
this.password4.setTransformationMethod(PasswordTransformationMethod.getInstance());
setTextChangeListener(this.password1, 2);
setTextChangeListener(this.password2, 3);
setTextChangeListener(this.password3, 4);
setTextChangeListener(this.password4, 0);
}
PasscodeView.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:boohee_v5.6
作者:
评论列表
文章目录