Android:学习笔记(一)

来源:互联网 发布:西门子300plc编程软件 编辑:程序博客网 时间:2024/05/22 02:17

在android学习中遇到的一些问题,记录一下。

1、解决edittext感叹号的问题。
This text field does not specify an inputType or a hint

加入下面代码即可解决:

android:hint="@null"

2、解决android4.0后edittext边框不全显示的问题

android:background="@android:drawable/edit_text"

3、感叹号问题
android:password is deprecated: Use inputType instead

android:password="true"修改为android:inputType="textPassword"

4、java.lang.IllegalStateException: Could not execute method of the activity

出现这种问题,就只能恨自己太大意了。
没有将activity添加到资源文件中

0 0