1.android.content.res.Resources$NotFoundException: String resource ID #0x1
一般发生在参数int Id,把String赋值给了int类型的Id。所以编译器找不到正确的resource于是报错。
经常发生在TextView.setText(int id);
setText中传入int会报这种错误,因为它不会显示int型,而是去工程中找对应resource的id,找不到就报错了。
解决办法,将传入的值转为String或是CharSequence(强转或是+“”)
相关文章
- android studio打包weexplus项目常见错误
- Android Fragment使用(二) 嵌套Fragments (Nested Fragments) 的使用及常见错误
- Android开发中java.lang.RuntimeException: Unable to start activity ComponentInfo{xxx}
- 无废话Android之常见adb指令、电话拨号器、点击事件的4种写法、短信发送器、Android 中各种布局(1)
- 【转载】Eclipse:Android开发中如何查看System.out.println的输出内容
- Android开发中Eclispe相关问题及相应解决(持续更新)
- iOS开发之类似Android中Toast效果制作
- Android开发:Eclipse中SqliteManager插件使用
- Android 开发之开发插件使用:Eclipse 插件 SQLiteManger eclipse中查看数据内容--翻译
- Android开发中Ant命令编译和APK签名的一些心得