This text field does not specify an inputType or a hint

エラー警告

エラーメッセージ

 状態:解決済  閲覧数:2,011  投稿日:2014-04-02  更新日:2014-04-02
This text field does not specify an inputType or a hint


内容


・テキストフィールドに、inputTypeを指定していないことに関する警告


対応


・テキストフィールドに、inputTypeを指定

実際に遭遇した例

 閲覧数:690 投稿日:2014-04-02 更新日:2014-04-02

警告メッセージ


This text field does not specify an inputType or a hint


対応


・テキストフィールドに、inputTypeを指定

・対象ファイル
▼/res/layout/test.xml

・修正前
<EditText
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:text="@string/hello" />


・修正後
<EditText
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:text="@string/hello"
   android:inputType="text" />



[I18N] Hardcoded string "★★", should use @string resource

Image Without `contentDescription`