Resource not found TextView

mRow is an integer. When you call setText(mRow) on line 75, it thinks that you are trying to set the text with a String resource with ID = the value of mRow.

Instead, do:

tRow.setText(Integer.toString(mRow));

Leave a Comment