diff options
| author | Dianne Hackborn <hackbod@google.com> | 2010-12-22 18:34:40 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-12-22 18:34:40 -0800 |
| commit | 2dda21b93f8a8e0fb70de44eae826bc68349813c (patch) | |
| tree | 92a7e37f5a559a85a4f3c18a0fafe67a449387b8 | |
| parent | 2bf89b2197674ccc414ea60a61199562df9dc52b (diff) | |
| parent | 7becaeea7b220ab6fbe93e35461c7734032e7af4 (diff) | |
| download | frameworks_base-2dda21b93f8a8e0fb70de44eae826bc68349813c.zip frameworks_base-2dda21b93f8a8e0fb70de44eae826bc68349813c.tar.gz frameworks_base-2dda21b93f8a8e0fb70de44eae826bc68349813c.tar.bz2 | |
Merge "Another stab at fixing issue #3149290 java.lang.RuntimeException:..." into gingerbread
| -rw-r--r-- | core/java/android/widget/AbsListView.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/core/java/android/widget/AbsListView.java b/core/java/android/widget/AbsListView.java index 8e8b830..35ef4cb 100644 --- a/core/java/android/widget/AbsListView.java +++ b/core/java/android/widget/AbsListView.java @@ -974,8 +974,16 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te ss.position = getSelectedItemPosition(); ss.firstId = INVALID_POSITION; } else { - if (haveChildren) { - // Remember the position of the first child + if (haveChildren && mFirstPosition > 0) { + // Remember the position of the first child. + // We only do this if we are not currently at the top of + // the list, for two reasons: + // (1) The list may be in the process of becoming empty, in + // which case mItemCount may not be 0, but if we try to + // ask for any information about position 0 we will crash. + // (2) Being "at the top" seems like a special case, anyway, + // and the user wouldn't expect to end up somewhere else when + // they revisit the list even if its content has changed. View v = getChildAt(0); ss.viewTop = v.getTop(); int firstPos = mFirstPosition; |
