I am having a strange problem using findViewById(id). It comes back with resource not found even though the resource is definitely there. It is a textview in a layout next t
textViewCount.setText(someArray.size()); was my problem.
textViewCount.setText(someArray.size());
Simply call toString(); to fix the problem.
toString();
Integer size = mSomeArray.size(); textViewReplyCount.setText(size.toString());