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

错误情景:

holder.comment.setText(mlist.get(position).getCommentCount());

错在把TextView的

setText(int resid) //跑到工程下去找一个对应的resource的id

setText(CharSequence text)
方法混淆。
解决方法:在int后面加上""就可以了。
原文地址:https://www.cnblogs.com/xingyyy/p/4151882.html