IndexOutOfBoundsException not making sense to me
I have an IndexOutOfBoundsException, but I am protecting the call with
finish() which should exit the Activity in Android! Should I be using an
else statement?
if (mIndex >= mQidList.size()) {
closeDB();
finish();
}
mQidList.get(mIndex);
No comments:
Post a Comment