Loading core/java/android/widget/ListView.java +5 −0 Original line number Diff line number Diff line Loading @@ -1393,6 +1393,11 @@ public class ListView extends AbsListView { resetList(); invokeOnItemScrollListener(); return; } else if (mItemCount != mAdapter.getCount()) { throw new IllegalStateException("The content of the adapter has changed but " + "ListView did not receive a notification. Make sure the content of " + "your adapter is not modified from a background thread, but only " + "from the UI thread."); } setSelectedPositionInt(mNextSelectedPosition); Loading Loading
core/java/android/widget/ListView.java +5 −0 Original line number Diff line number Diff line Loading @@ -1393,6 +1393,11 @@ public class ListView extends AbsListView { resetList(); invokeOnItemScrollListener(); return; } else if (mItemCount != mAdapter.getCount()) { throw new IllegalStateException("The content of the adapter has changed but " + "ListView did not receive a notification. Make sure the content of " + "your adapter is not modified from a background thread, but only " + "from the UI thread."); } setSelectedPositionInt(mNextSelectedPosition); Loading