如何将edittext密码字段字符更改为星号而不是点android?
我创建了一个包含用户名和密码字段的登录应用程序。这里我的问题是,当我在默认提交的编辑文本中插入密码文本时,它以点显示。我想用星星符号显示它。在android中可以吗? 如果可能的话请帮助我。
问候, 马杜。
I created one login application with username and password fields.here my problem is when i insert the password text in edittext filed bydefault its shows in dots. I want to show it in stars symbol.Is it possible in android?
If possible please help me.
regards,
Madhu.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用
setTransformationMethod( )
以及类似PasswordTransformationMethod
即您自己制作PasswordTransformationMethod,其中代替点:
您可以使用您喜欢的任何内容。星号是
\u002A
You use
setTransformationMethod()
and something like thePasswordTransformationMethod
i.e. you make your own PasswordTransformationMethod, where instead of the DOT :
You use whatever you fancy. Asterisk is
\u002A