android.content.res.Resources$NotFoundExcept 错误

运行后 手机点击获取分辨率按钮后  程序崩溃

原因:String赋值给int的resId,所以编译器找不到正确的resource

在这个程序中 获取的分辨率为Int类型 所以报错  在后面加+""即可

修改后的代码

时间: 2024-10-09 16:56:28

android.content.res.Resources$NotFoundExcept 错误的相关文章

关于找不到布局的错误android.content.res.Resources$NotFoundException: Resource ID #0x7f05003e type #0x12 is not valid

今天遇到这个错误,android.content.res.Resources$NotFoundException: Resource ID #0x7f05003e type #0x12 is not valid 我在R文件中找到了这个这个ID的源  原来是一个布局文件,我给他定义了ID直接进行引用(很蠢是不是,新手嘛) 然后就冒了这个错 改正方法  将R.id.资源改成 R.layout.资源 就ok了  其他人未必是这么改  请勿照猫画虎

android.content.res.Resources$NotFoundException

今天在项目中遇到异常android.content.res.Resources$NotFoundException: String resource ID #0x42 对应报错的程序中的代码行是这样的: holder.groupTextView.setText(city.getPy().toUpperCase().charAt(0)); 开始以为是资源id弄错了,检查了一遍,发现没有问题: 接着又顺着是不是组成TextView的资源是否缺失这个方向去查找问题,还是没找到原因: 最后google了

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

无语,搞了半天,只能去插这个错误代号,结果就找到了这个结果. scoreTextView.setText(score+""); 这个一定要自己手动转换..不科学啊..关键是在eclipse里的提示错误让人以为是id写错了什么的. 以下是别人的一片文章: http://www.blogjava.net/anchor110/articles/355670.html 今天跑程序的时候,出现这样的错误: android.content.res.Resources$NotFoundExcepti

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

在练习数据绑定时,出现以下错误 FATAL EXCEPTION: main                                                                               Process: com.vogella.android.databinding, PID: 8332                                                                               andr

java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable /getColor

java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable/getColor 异常错误. 原因:Context类的getDrawable(res)/geColor(res)方法和Resources的getDrawable(res,theme)/getColor(res.theme)都是API21才添加的,低版本系统无法找到该方法所以报异常. 解决办法:     使用Resources的 getDrawable(re

异常处理android.content.res.Resources$NotFoundException: String resource ID #0x44

错误:android.content.res.Resources$NotFoundException: String resource ID #0x1 原因:一般发生在参数 int resId 错误,你把String赋值给int的resId,所以编译器找不到正确的resource于是报错. 最简单的例子,检查一下你的Toast.makeText()啊textView.setText啊之类的函数,这种函数通常有几个重载,如: textView.setText(CharSequence text);

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

之前忘了记录这个错误,今天又遇到了.唉,人不能纵容自己犯懒,遂记录之. 错误:android.content.res.Resources$NotFoundException: String resource ID #0x1 原因:一般发生在参数 int resId 错误,你把String赋值给int的resId,所以编译器找不到正确的resource于是报错. 最简单的例子,检查一下你的Toast.makeText()啊textView.setText啊之类的函数,这种函数通常有几个重载,如:

Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f070058 android-studio 3.0 from canary 5 to canary 6

我升级android-studio到了3.0 canary 6打包编译安装出现如下错误: 07-11 13:00:39.523 8913-8913/dcpl.com.myapplication E/AndroidRuntime: FATAL EXCEPTION: main Process: dcpl.com.myapplication, PID: 8913 java.lang.RuntimeException: Unable to start activity ComponentInfo{dcp

android.content.res.Resources$NotFoundException: String resource ID XXXX

错误:android.content.res.Resources$NotFoundException: String resource ID XXXX 原因:一般发生在参数 int resId 错误,你把String赋值给int的resId,所以编译器找不到正确的resource于是报错. 最简单的例子,检查一下你的Toast.makeText()啊textView.setText啊之类的函数,这种函数通常有几个重载,如: textView.setText(CharSequence text);