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

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());


你可能感兴趣的:(android,android,android)