Looking closer at the place you suggested, I changed the colorCacheHint on the listview which kept it from crashing at line 1276. Still crashes, but later. Your point about the childview not returning a value seems to be spot on.
1274 <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#1274> <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#> child = mAdapter <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#AbsListView.0mAdapter>.getView <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/Adapter.java#Adapter.getView%28int%2Candroid.view.View%2Candroid.view.ViewGroup%29>(position, null, this); 1275 <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#1275> <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#> if (mCacheColorHint <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#AbsListView.0mCacheColorHint> != 0) { 1276 <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#1276> <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#> child.setDrawingCacheBackgroundColor <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/view/View.java#View.setDrawingCacheBackgroundColor%28int%29>(mCacheColorHint <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#AbsListView.0mCacheColorHint>); 1277 <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#1277> <http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/AbsListView.java#> } It seems the footer view I assign to the list view might be at the root of this issue. Now I have another avenue to explore. Thank you again. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

