I created an Integer array and I want to insert an index of a string;
indexes[i] = theText.indexOf(R.getString(0), i);
But I get an error about using indexOf.
How can I fix that?
*I can't change the array to int because I have a comparison of array index to null
Thanks!
theText
? – Jon Skeet May 18 '11 at 9:31