Where can I find the values that inputType can have?

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

link|improve this question

feedback

3 Answers

up vote 47 down vote accepted

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

For more info refer to the link in @Josh 's comment :-)

link|improve this answer
feedback

A bit late in the day, but I think this might be what you're looking for: http://developer.android.com/reference/android/R.attr.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.