EditText、inputType 值 (XML)

发布于 2024-08-30 03:09:23 字数 248 浏览 3 评论 0原文

在哪里可以找到 InputType 可以具有的值?

我知道 http://developer.android.com/reference/android/ text/InputType.html,但是这些值在布局 XML 文件中应该是什么样子呢?

Where can I find the values that InputType can has?

I'm aware of http://developer.android.com/reference/android/text/InputType.html, but how should the values look like in layout XML files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

调妓 2024-09-06 03:09:23

您可以使用 eclipse 中的属性选项卡来设置各种值。

这里是所有可能的值

  • none
  • text
  • textCapCharacters
  • textCapWords
  • textCapSentences
  • textAutoCorrect
  • textAutoComplete
  • textMultiLine
  • textImeMultiLine
  • textNoSuggestions
  • textUri
  • textEmailAddress
  • textEmailSubject
  • textShortMessage
  • textLongMessage
  • textPersonName
  • textPostalAddress
  • textPassword
  • textVisiblePassword
  • textWebEditText
  • textFilter
  • textPhonetic
  • textWebEmailAddress
  • textWebPassword
  • number
  • numberSigned
  • numberDecimal
  • numberPassword
  • phone
  • datetime
  • date
  • time

检查此处解释: http://developer.android.com/reference/android/widget/TextView.html#attr_android:输入类型

You can use the properties tab in eclipse to set various values.

here are all the possible values

  • none
  • text
  • textCapCharacters
  • textCapWords
  • textCapSentences
  • textAutoCorrect
  • textAutoComplete
  • textMultiLine
  • textImeMultiLine
  • textNoSuggestions
  • textUri
  • textEmailAddress
  • textEmailSubject
  • textShortMessage
  • textLongMessage
  • textPersonName
  • textPostalAddress
  • textPassword
  • textVisiblePassword
  • textWebEditText
  • textFilter
  • textPhonetic
  • textWebEmailAddress
  • textWebPassword
  • number
  • numberSigned
  • numberDecimal
  • numberPassword
  • phone
  • datetime
  • date
  • time

Check here for explanations: http://developer.android.com/reference/android/widget/TextView.html#attr_android:inputType

顾挽 2024-09-06 03:09:23

补充答案

以下是标准键盘对于每种输入类型的行为方式。

输入图像描述此处

请参阅此答案了解更多详细信息。

Supplemental answer

Here is how the standard keyboard behaves for each of these input types.

enter image description here

See this answer for more details.

删除→记忆 2024-09-06 03:09:23
android:inputMethod

已弃用,请改用 inputType

 android:inputType="numberPassword"
android:inputMethod

is deprecated, instead use inputType :

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