码迷,mamicode.com
首页 > 其他好文 > 详细

This text field does not specify an inputType or a hint

时间:2015-04-15 18:58:36      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:

<EditText
        android:id="@+id/entry"
android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/label" />

这样写的时候突然发现有黄色的叹号出现,提示:"This text field does not specify an inputType or a hint";

    原因是这个编辑框缺少一个属性:hint。

 修改后代码为:

<EditText
        android:id="@+id/entry"

        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/label"
        android:hint="@null"
  />
添加后黄色叹号就消失了。
 

This text field does not specify an inputType or a hint

标签:

原文地址:http://www.cnblogs.com/mengliandroid/p/4428878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!