编写文本输入框时以下写法出现黄色警告提示”This text field does not specify an inputType or a hint“
<EditText
android:id="@+id/etActivityc"android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
原因:缺少一个属性hint
hint:输入框提示语
解决方法:添加hint属性
android:hint="@null"