Android:学习笔记
Posted mfmdaoyou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android:学习笔记相关的知识,希望对你有一定的参考价值。
在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加入到资源文件里
以上是关于Android:学习笔记的主要内容,如果未能解决你的问题,请参考以下文章
[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段
Android内核源码bionic目录下的子目录arch-arm源码分析笔记