如何将edittext密码字段字符更改为星号而不是点android?

发布于 2024-12-17 06:26:49 字数 118 浏览 0 评论 0原文

我创建了一个包含用户名和密码字段的登录应用程序。这里我的问题是,当我在默认提交的编辑文本中插入密码文本时,它以点显示。我想用星星符号显示它。在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-12-24 06:26:49

您使用 setTransformationMethod( ) 以及类似 PasswordTransformationMethod

即您自己制作PasswordTransformationMethod,其中代替点:

   private static char DOT = '\u2022';

您可以使用您喜欢的任何内容。星号是\u002A

You use setTransformationMethod() and something like the PasswordTransformationMethod

i.e. you make your own PasswordTransformationMethod, where instead of the DOT :

   private static char DOT = '\u2022';

You use whatever you fancy. Asterisk is \u002A

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文