inputTypeの一般的なタイプ

    android:inputType = "none" //通常の文字を入力
    android:inputType = "text" //通常の文字を入力
    android:inputType = "textCapCharacters" //通常の文字を入力
    android:inputType = "textCapWords" //単語の最初の文字のサイズ
    android :inputType = "textCapSentences" //最初の文字サイズのみ
    android:inputType = "textAutoCorrect" //最初の2つは自動的に完了します
    android:inputType = "textAutoComplete" //最初の2つは自動的に完了します
    android:inputType = "textMultiLine" / /複数行入力
    android:inputType = "textImeMultiLine" //複数行入力メソッド(必ずしもサポートされていません)
    android:inputType = "textNoSuggestions" //
    android:inputType = "textUri" // URI形式
    android:inputType = "textEmailAddress "//メールアドレス形式
    android:inputType ="textEmailSubject "//メールの件名の形式
    android:inputType =" textShortMessage "//短いメッセージの形式
    android:inputType = "textLongMessage" //ロングメッセージ形式
    android:inputType = "textPersonName" //個人名形式
    android:inputType = "textPostalAddress" //郵便形式
    android:inputType = "textPassword" //パスワード形式
    android:inputType = " textVisiblePassword "//パスワード表示形式
    android:inputType =" textWebEditText "// Webフォームのテキスト形式として
    android:inputType =" textFilter "//テキストフィルタリング形式
    android:inputType =" textPhonetic "// Pinyin入力形式
 
    //数値タイプ
    android:inputType = "number" //数値形式
    android:inputType = "numberSigned" //署名付き数値形式
    android:inputType = "numberDecimal" //小数点付き浮動小数点形式
    android:inputType = "phone" //ダイヤルキーボード
    android:inputType = "datetime "// date + time format
    android:inputType =" date "// dateキーボード
    android:inputType = "time" //タイムキーボード

おすすめ

転載: blog.csdn.net/a451319296/article/details/109408952