I'm getting this error in my application. I just want to know what does this error exaclty means. It would be really good if you give a simple example to explain
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
it just means your Array or Cursor or what ever is not having any elements, its length is 0. so assume
|
|||
|
|
|
You are asking for the first element of an empty array. There is no first element, so you get an exception. |
|||
|
|
|
Without seeing your code (which would be very helpful here), it sounds like you've got an empty array or list, and you're asking for the first element (which doesn't exist). For example:
I think the same thing probably happens with |
|||
|
|