如何将edittext中引入的文本转换为密码样式(*****)?
我需要这样做,就像当您将 PIN 码输入手机时,数字会变成星号 (**)。
有没有办法在布局 xml 文件中做到这一点?如果不行的话有没有办法用java实现呢?
I need to do that, like when you put the PIN code in your phone, the numbers transforms into stars (**).
Is there a way to do that in the layout xml file? If not, is there a way to do it with java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://developer.android.com/reference/android/widget /TextView.html#attr_android:密码
http://developer.android.com/reference/android/widget/TextView.html#attr_android:password
使用代码来做到这一点:
To do it using code:
我解决了。您必须将
android:password="true"
放在 xml 上。I solved it. You have to put
android:password="true"
on the xml.