Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e576092 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Ifb15e7fe into eclair

* changes:
  Make call log requeries use background thread.
parents 26fbb58c 0d354d3a
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -235,6 +235,15 @@ public class RecentCallsListActivity extends ListActivity
            mLabelArray = getResources().getTextArray(com.android.internal.R.array.phoneTypes);
        }

        /**
         * Requery on background thread when {@link Cursor} changes.
         */
        @Override
        protected void onContentChanged() {
            // Start async requery
            startQuery();
        }

        void setLoading(boolean loading) {
            mLoading = loading;
        }