Android: How to set password property in an edit text?(Android:如何在编辑文本中设置密码属性?)
问题描述
我需要在我的 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:如何在编辑文本中设置密码属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android:如何在编辑文本中设置密码属性?
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01