我需要在我的 Android 应用程序中创建一个包含用户名"密码"字段和登录"和取消"两个按钮的登录表单.
I need to create a login form with 'username' 'password' fields and two buttons 'login' and 'cancel' in my android application.
我正在使用一个带有 edittext 的警报对话框.
I am using an alert dialog with edittext inside that.
这是我用来创建密码编辑文本的代码..
This is the code I used to create password edittext..
final EditText Password = new EditText(this);
Password.setGravity(Gravity.CENTER);
Password.setHint("Password");
Password.setWidth(200);
Password.setTransformationMethod(new PasswordTransformationMethod());
login_alert.addView(Password);
我的问题是,当我打开软键盘编辑密码时,显示的是纯文本而不是点".(不处于软键盘模式时显示为点)
My issue is that, plain text is shown instead of 'dots' when i open a softkeypad to edit the password. (It is shown as dots when not in softkeypad mode)
谁能提出解决方案?
Password.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
这个对我有用.
但是你必须看看 Octavian Damiean 的评论,他是对的.
This one works for me.
But you have to look at Octavian Damiean's comment, he's right.
这篇关于Android:如何在编辑文本中设置密码属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!