commit | d9a874a4cb8e82ae64c1698bd71ced8d87bbc5cd | [log] [tgz] |
---|---|---|
author | Android (Google) Code Review <android-gerrit@google.com> | Sat May 23 13:27:18 2009 -0700 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Sat May 23 13:27:18 2009 -0700 |
tree | e40c1062ef8adb9f5cd0d20ae0c141ac79d03235 | |
parent | 270e87f71abc2edf446dbec20c725c823e8c7f37 [diff] | |
parent | a02903fbee6725563da4472bd120f844e9d5518c [diff] |
Merge change 2397 into donut * changes: Fixes NPE in ListViews with non-selectable items. This was caused by a weird initialization issue in ListView and AbsListView: a private final field instanciated in the declaration in ListView was used in AbsListView<init> via an overriden method and that field was somehow null at this time. This fix moves the instanciation at a later point.