错误:android.content.res.Resources$NotFoundException: String resource ID #0x583e

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

at android.content.resResources.getText(Resources.java:248)

程序发生了如下错误:


认真一查原来:name.setText(bean.number);

手写快了,很容易将整数直接传递给setText(),而本质上应该传递“字符串”或者“资源id”。

这里传递过去的整数并非资源id。

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