web-dev-qa-db-ja.com

EditText、inputType値(xml)

InputTypeの値はどこにありますか?

http://developer.Android.com/reference/Android/text/InputType.html を知っていますが、レイアウトxmlファイルではどのように値を表示する必要がありますか?

119
jgauffin

Eclipseのプロパティタブを使用して、さまざまな値を設定できます。

ここにすべての可能な値があります

  • none
  • テキスト
  • textCapCharacters
  • textCapWords
  • textCapSentences
  • textAutoCorrect
  • textAutoComplete
  • textMultiLine
  • textImeMultiLine
  • textNoSuggestions
  • textUri
  • textEmailAddress
  • textEmailSubject
  • textShortMessage
  • textLongMessage
  • textPersonName
  • textPostalAddress
  • textPassword
  • textVisiblePassword
  • textWebEditText
  • textFilter
  • テキスト
  • textWebEmailAddress
  • textWebPassword
  • 番号
  • numberDecimal
  • numberPassword
  • 電話
  • 日付時刻
  • 日付
  • 時間

説明についてはこちらをご覧ください: http://developer.Android.com/reference/Android/widget/TextView.html#attr_Android:inputType

295
Ravi Vyas

補足回答

これらの各入力タイプに対する標準キーボードの動作は次のとおりです。

enter image description here

詳細については this answer をご覧ください。

15
Suragch
Android:inputMethod

非推奨です。代わりにinputTypeを使用してください。

 Android:inputType="numberPassword"
0
Hamed Jaliliani