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

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

时间:2014-08-21 19:15:34      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:android   blog   http   io   ar   html   log   htm   

之前忘了记录这个错误,今天又遇到了。唉,人不能纵容自己犯懒,遂记录之。

 

错误:android.content.res.Resources$NotFoundException: String resource ID #0x1

原因:一般发生在参数 int resId 错误,你把String赋值给int的resId,所以编译器找不到正确的resource于是报错。

最简单的例子,检查一下你的Toast.makeText()啊textView.setText啊之类的函数,这种函数通常有几个重载,如:

textView.setText(CharSequence text);

textView.setText(int resId);

......

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

 

解决办法:

如果要显示该int值,就要将int转化成String或者CharSequence,百度上很多办法。

个人比较喜欢这么干:在该int值后面+"",强制转为String。简单易用。╮(╯_╰)╭

 

本文转自:http://blog.sina.com.cn/s/blog_5e58565701012ox7.html

android.content.res.Resources$NotFoundException: String resource ID #0x1,布布扣,bubuko.com

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

标签:android   blog   http   io   ar   html   log   htm   

原文地址:http://www.cnblogs.com/sishuiliuyun/p/3927824.html

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