EditText,inputType值(xml)

jga*_*fin 121 layout android android-edittext android-inputtype

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

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

Rav*_*yas 297

您可以使用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

  • http://developer.android.com/reference/android/widget/TextView.html#attr_android:inputType (53认同)

Sur*_*gch 17

补充答案

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

在此输入图像描述

有关详细信息,请参阅此答案.