You can also use
String.ValueOf()
in your code to avoid the Resource Not Found Exception .
Your code will look like this
rollNo.setText(String.ValueOf(items[position].getRollNo()));
It will work perfectly fine because the SetText() only requires strings as values to be passed on.