首页 > 代码库 > ListView random IndexOutOfBoundsException on Froyo

ListView random IndexOutOfBoundsException on Froyo

http://stackoverflow.com/questions/8431342/listview-random-indexoutofboundsexception-on-froyo

今天遇到个

    AndroidRuntime  E  java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0    AndroidRuntime  E    at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:257)
类似的问题,stackoverflow上是如此解决的:
class MyFixedListView extends ListView {    @Override    protected void dispatchDraw(Canvas canvas) {        try {            super.dispatchDraw(canvas);        } catch (IndexOutOfBoundsException e) {            // samsung error        }    }}

ListView random IndexOutOfBoundsException on Froyo