android.content.res.Resources$NotFoundException
message
solution
int i = 0;
textView.setText( i);
android.content.res.Resources$NotFoundException
solution
// cast int to string
textView.setText("text: " + i);
댓글