1 <EditText 2 android:layout_width="fill_parent" 3 android:layout_height="wrap_content" 4 android:minLines="3" 5 android:id="@+id/message" 6 />
這樣寫的時候突然發現有黃色的嘆號出現,提示:"This text field does not specify an inputType or a hint";
原因是這個編輯框缺少一個屬性:hint。
hint屬性作用如下:
修改后代碼為:
1 <EditText 2 android:layout_width="fill_parent" 3 android:layout_height="wrap_content" 4 android:minLines="3" 5 android:hint="@null" 6 android:id="@+id/message" 7 />
添加后黃色嘆號就消失了。