エラーメッセージ
状態:解決済
閲覧数:1,748
投稿日:2014-04-02
更新日:2014-04-02
This text field does not specify an inputType or a hint
内容
・テキストフィールドに、inputTypeを指定していないことに関する警告
対応
・テキストフィールドに、inputTypeを指定
実際に遭遇した例
警告メッセージ
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" />