In android how to show asterisk (*) in place of dots in EditText having inputtype as textPassword?(在android中如何显示星号(*)代替EditText中的点,输入类型为textPassword?)
问题描述
我试图用 asterisk (*) 符号代替 EditText 中的点,其中 inputType 为 textPassword代码>.我遇到了要求使用 setTransformationMethod() 并实现 PasswordTransformationMethod 的帖子.但是我需要实现该类的哪个方法以及如何显示星号?还有其他方法吗?
I am trying to show in asterisk (*) symbol in place of dots in EditText having inputType as textPassword. I came across post that ask to use setTransformationMethod() and implement PasswordTransformationMethod. But which method I of that class need I implement and how show asterisk? Is there other way to do that?
谢谢
推荐答案
我觉得你应该通过文档.创建你的 PasswordTransformationMethod 类,并在 getTransformation() 方法中,只返回与内容长度相同的 * 字符串您的密码字段.
I think you should go through the documentation. Create your PasswordTransformationMethod class, and in the getTransformation() method, just return a string of * characters that is the same length as the contents of your password field.
我做了一些摆弄,想出了一个匿名类,它可以让我创建一个充满 * 的字段.我在这里将其转换为可用的类:
I did some fiddling and came up with an anonymous class that worked for me to make a field full of *s. I converted it into a usable class here:
public class MyPasswordTransformationMethod extends PasswordTransformationMethod {
@Override
public CharSequence getTransformation(CharSequence source, View view) {
return new PasswordCharSequence(source);
}
private class PasswordCharSequence implements CharSequence {
private CharSequence mSource;
public PasswordCharSequence(CharSequence source) {
mSource = source; // Store char sequence
}
public char charAt(int index) {
return '*'; // This is the important part
}
public int length() {
return mSource.length(); // Return default
}
public CharSequence subSequence(int start, int end) {
return mSource.subSequence(start, end); // Return default
}
}
};
// Call the above class using this:
text.setTransformationMethod(new MyPasswordTransformationMethod());
这篇关于在android中如何显示星号(*)代替EditText中的点,输入类型为textPassword?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在android中如何显示星号(*)代替EditText中的点,输
- Android viewpager检测滑动超出范围 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
