创建适配器时报:ERROR/AndroidRuntime(1703): Caused by: android.content.res.Resources$NotFoundExcepti

来源:互联网 发布:总裁小说改编的网络剧 编辑:程序博客网 时间:2024/05/17 01:13

ERROR/AndroidRuntime(1703): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x0


是因为view的setText(),传入的不是字符串类型的基础数据类型,比如整数类型..虽然编译可以但是运行时会报错...

比如amountView.setText(person.getAmount()); 就会报错..

需修改为amountView.setText(person.getAmount().toString());