for(int i = 0; i < mBucket.size(); i++)
{
c = (String) mBucket.get(0);
a = Integer.toString(c);
}
mBucket is an arrayList and what the for loop is doing is retrieving the first element in mBucket and going to convert it to an int. What I'm running into is that the method is not applicable for the argument (String). Any suggestions to help me fix this?