This text field does not specify an inputType or a hint


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         />

   添加后黃色嘆號就消失了。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM