This text field does not specify an inputType or a hint

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了This text field does not specify an inputType or a hint相关的知识,希望对你有一定的参考价值。

android开发过程中突然发现的warning
EditText 报出 “This text field does not specify an inputType or a hint”

原因:
EditText须要指定默认输入类型
增加android:inputType="number|phone",表示指定为数字或电话

inputtype类型例如以下:
?//文本类型。多为大写、小写和数字符号。
????android:inputType="none"
????android:inputType="text"
????android:inputType="textCapCharacters"
????android:inputType="textCapWords"
????android:inputType="textCapSentences"
????android:inputType="textAutoCorrect"
????android:inputType="textAutoComplete"
????android:inputType="textMultiLine"
????android:inputType="textImeMultiLine"
????android:inputType="textNoSuggestions"
????android:inputType="textUri"
????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"
????android:inputType="textFilter"
????android:inputType="textPhonetic"
//数值类型
????android:inputType="number"
????android:inputType="numberSigned"
????android:inputType="numberDecimal"
????android:inputType="phone"//拨号键盘
????android:inputType="datetime"
????android:inputType="date"//日期键盘
????android:inputType="time"//时间键盘

以上是关于This text field does not specify an inputType or a hint的主要内容,如果未能解决你的问题,请参考以下文章

An error occurred Field [id] referenced by index [] does not exist.

Kotlin + Dagger2 出现 Dagger does not support injection into private fields 解决方案

Eclipse下关于The serializable class UsersServlet does not declare a static final serialVersionUID field

Kotlin + Dagger2 出现 Dagger does not support injection into private fields 解决方案

Kotlin + Dagger2 出现 Dagger does not support injection into private fields 解决方案

Kotlin + Dagger2 出现 Dagger does not support injection into private fields 解决方案