2011年10月19日

Android: EditText和EditTextPreference輸入格式

在AndroidManifest.xml中指定EditText和EditTextPreference的輸入格式,,
可以節省很多不必要的檢查動作!
//文字
android:inputType=
"none"
"text"
"textCapCharacters"
"textCapWords"
"textCapSentences"
"textAutoCorrect"
"textAutoComplete"
"textMultiLine"
"textImeMultiLine"
"textNoSuggestions"
"textUri"
"textEmailAddress"
"textEmailSubject"
"textShortMessage"
"textLongMessage"
"textPersonName"
"textPostalAddress"
"textPassword"
"textVisiblePassword"
"textWebEditText"
"textFilter"
"textPhonetic"
//數值
android:inputType=
"number"       //純數字
"numberSigned" //有號數字
"numberDecimal"//可帶小數點
"phone"        //撥號鍵盤
"datetime"
"date"         //日期鍵盤
"time"         //時間鍵盤

沒有留言: