在Android Studio中对TextView调用setText时传入的是Int类型的值,就会提示:
android.content.res.Resources NotFoundException: String resource ID 0x

博客: 
https://blog.csdn.net/badao_liumang_qizhi 
关注公众号 
霸道的程序猿 
获取编程相关电子书、教程推送与免费下载。
将int数据添加一个+""即可
mText.setText(mEntityList.get(position).getId()+"");
AndroidStudio中提示:android.content.res.Resources NotFoundException: String resource ID 0x
原文:https://www.cnblogs.com/badaoliumangqizhi/p/14107674.html