Android EditText for password with android:hint(带有 android:hint 的 Android EditText 密码)
问题描述
刚刚注意到 android:password 已被弃用,我们应该使用 android:inputType.通过在我的 xml 中设置来试验它
Just noticed that android:password has been deprecated, and we should be using android:inputType. Was experimenting with it by setting in my xml
android:inputType="textPassword"
确实是这样的
android:password="true"
对于 EditText,但似乎如果我使用 android:inputType,android:hint 将不起作用.EditText 将为空白.使用 android:password 和 android:hint 时没有这样的问题.我在这里遗漏了一些关于 android:inputType 的内容吗?
for EditText, but it seems that if I use android:inputType, android:hint will not work. The EditText will be blank. There is no such issues when using android:password with android:hint. Am I missing something here about android:inputType?
推荐答案
刚刚偶然发现了答案.android:inputType="textPassword"
确实适用于 android:hint
,与 android:password
相同.唯一的区别是当我使用 android:gravity="center"
时,如果我使用的是 android:inputType
,提示将不会显示.结案!
Just stumbled on the answer. android:inputType="textPassword"
does work with android:hint
, same as android:password
. The only difference is when I use android:gravity="center"
, the hint will not show if I'm using android:inputType
. Case closed!
这篇关于带有 android:hint 的 Android EditText 密码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有 android:hint 的 Android EditText 密码
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01