EditText,inputType值(xml)

时间:2010-04-26 10:43:44

标签: android layout android-edittext android-inputtype

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

我知道http://developer.android.com/reference/android/text/InputType.html,但布局xml文件中的值应如何?

3 个答案:

答案 0 :(得分:291)

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

这里是所有可能的值

  • 文本
  • textCapCharacters
  • textCapWords
  • textCapSentences
  • textAutoCorrect
  • textAutoComplete
  • textMultiLine
  • textImeMultiLine
  • textNoSuggestions
  • textUri
  • textEmailAddress
  • textEmailSubject
  • textShortMessage
  • textLongMessage
  • textPersonName
  • textPostalAddress
  • textPassword
  • textVisiblePassword
  • textWebEditText
  • textFilter
  • textPhonetic
  • textWebEmailAddress
  • textWebPassword
  • numberSigned
  • numberDecimal
  • numberPassword
  • 电话
  • 日期时间
  • 日期
  • 时间

点击此处查看说明:http://developer.android.com/reference/android/widget/TextView.html#attr_android:inputType

答案 1 :(得分:11)

补充答案

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

enter image description here

有关详细信息,请参阅this answer

答案 2 :(得分:0)

android:inputMethod

被贬低,而是使用inputType:

 android:inputType="numberPassword"