Skip to content
Advertisement

Error in displaying data with TextView.setText: Resources$NotFoundException: String resource ID #0x0

I am getting this exception:

JavaScript

The exception stack trace points to this line in the adapter class:

JavaScript

This is my adapter class:

JavaScript

This is my POJO class:

JavaScript

Advertisement

Answer

You’re accidentally calling the version of TextView.setText that takes an int resource ID.

You should explicitly convert it to a String:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement