Android开发资料[20121125]

1. 异常:android.content.res.Resources$NotFoundException:String resource ID #0x[yz]

原因是整型和字符串型数据的转换问题,见 http://www.blogjava.net/anchor110/articles/355670.html

tvfoot.setText(foot);    报错  foot是int型

tvfoot.setText(foot + "");

2. Android应用程序窗口(Activity)实现框架简要介绍和学习计划

原文网址:http://www.2cto.com/kf/201211/169268.html

3. 异常:java.io.IOException: Unable to open sync connection!

解决方案:关掉USB调试,然后重新开启

原文网址:http://blog.csdn.net/panyaorui/article/details/7483583

4. 

原文地址:https://www.cnblogs.com/yinger/p/2780048.html