カテゴリー:
警告
閲覧数:553 配信日:2014-04-02 17:37
警告メッセージ
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" />