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

记录一下被坑的小问题

Android开发中,遇到这个错误
android.content.res.Resources$NotFoundException: String resource ID #0x1
一定要检查你的TextView的设置传值的时候是不是传入了Int类型的值。

比如说:
错误写法:item.setTime(123) ;【不能直接传入int类型的值】
正确写法:item.setTime("123"); 或者 item.setTime(" " + 123); 【应该传入String类型的值】
原文链接:https://blog.csdn.net/ERP_LXKUN_JAK/article/details/91983050

你可能感兴趣的:(android.content.res.Resources$NotFoundException: String resource ID #0x1)