EditText, inputType 값 (xml)


127

가질 수있는 가치를 어디에서 찾을 InputType수 있습니까?

http://developer.android.com/reference/android/text/InputType.html 알고 있지만 레이아웃 xml 파일에서 값은 어떻게 표시됩니까?


2
조금 늦었지만, 이것이 당신이 찾고있는 것일 수도 있습니다. developer.android.com/reference/android/R.attr.html
ChrisV

3
이것은 당신이 찾고있는 것일 수도 있습니다 : developer.android.com/reference/android/…
Robbie Matthews

답변:


308

이클립스의 속성 탭을 사용하여 다양한 값을 설정할 수 있습니다.

여기에 가능한 모든 값이 있습니다

  • none
  • 본문
  • textCapCharacters
  • textCapWords
  • textCapSentences
  • textAutoCorrect
  • textAutoComplete
  • textMultiLine
  • textImeMultiLine
  • textNoSuggestions
  • textUri
  • textEmailAddress
  • textEmailSubject
  • textShortMessage
  • textLongMessage
  • textPersonName
  • textPostalAddress
  • textPassword
  • textVisiblePassword
  • textWebEditText
  • textFilter
  • 텍스트
  • textWebEmailAddress
  • textWebPassword
  • 번호
  • numberSigned
  • 십진수
  • numberPassword
  • 전화
  • 날짜 시간
  • 데이트
  • 시각

설명을 보려면 여기를 확인하십시오 : http://developer.android.com/reference/android/widget/TextView.html#attr_android:inputType



기술...?
Yousha Aleayoub

24

보충 답변

표준 키보드가 이러한 각 입력 유형에 대해 작동하는 방식은 다음과 같습니다.

여기에 이미지 설명을 입력하십시오

자세한 내용은 이 답변 을 참조하십시오.


0
android:inputMethod

더 이상 사용되지 않습니다. 대신 다음을 사용하십시오 inputType.

 android:inputType="numberPassword"
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.