如何将edittext中引入的文本转换为密码样式(*****)?

发布于 2024-10-02 09:19:07 字数 104 浏览 2 评论 0原文

我需要这样做,就像当您将 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 技术交流群。

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

发布评论

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

评论(4

往日情怀 2024-10-09 09:19:07
<EditText 
  android:id="@+id/Text_password"  
  android:password="true" 
  android:layout_width="80dip"   
  android:singleLine="true"
  android:inputType="text" 
  android:hint="Password"
  android:layout_height="wrap_content">
<EditText 
  android:id="@+id/Text_password"  
  android:password="true" 
  android:layout_width="80dip"   
  android:singleLine="true"
  android:inputType="text" 
  android:hint="Password"
  android:layout_height="wrap_content">
吃不饱 2024-10-09 09:19:07

使用代码来做到这一点:

 fieldname.setTransformationMethod(android.text.method.PasswordTransformationMethod.getInstance());

To do it using code:

 fieldname.setTransformationMethod(android.text.method.PasswordTransformationMethod.getInstance());
机场等船 2024-10-09 09:19:07

我解决了。您必须将 android:password="true" 放在 xml 上。

I solved it. You have to put android:password="true" on the xml.

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