EditText,inputType值(xml)

我在哪里可以findinputType可以具有的值?

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

您可以使用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
  • 电话
  • 约会时间
  • date
  • 时间

检查这里的解释: http : //developer.android.com/reference/android/widget/TextView.html#attr_android : inputType

尝试下面的代码片段。 这就是标准input的外观。 我已经用4.4testing了它。

<EditText android:id="@+id/activity2UsernameEditText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignBottom="@+id/activity2SaveButton" android:layout_alignParentLeft="true" android:layout_marginBottom="88dp" android:ems="10" android:inputType="textNoSuggestions" />