码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发中常见错误

时间:2014-09-02 19:20:45      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:android   io   ar   sp   on   c   res   file   har   

E/Trace(28187): error opening trace file: No such file or directory (2)

错误原因:android api版本和模拟器版本不一致,对开发无影响。

android.content.res.Resources$NotFoundException: String resource ID #0x36

错误原因:一般发生在参数int resId错误,将String赋值给int的resId,所以编译器找不到正确的resource于是报错。检查一下Toast.makeText()、textView.setText之类的函数,这种函数通常有几个重载,如:

textView.setText(CharSequence text);

textView.setText(int resId);

......

如果不小心将一个int值传给了它,那它不会显示该int值,而是到工程下去找一个对应的resource的id,当然是找不到的,于是报错。

解决方案:例:count.setText(incall.getCount());修改为:count.setText(String.valueOf(incall.getCount())); 或者count.setText(incall.getCount() + "");

Android开发中常见错误

标签:android   io   ar   sp   on   c   res   file   har   

原文地址:http://www.cnblogs.com/iiahadadiaow/p/3951876.html

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