Searched defs:notifyDataSetChanged (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DBaseAdapter.java49 public void notifyDataSetChanged() { method in class:BaseAdapter
H A DBaseExpandableListAdapter.java55 public void notifyDataSetChanged() { method in class:BaseExpandableListAdapter
H A DArrayAdapter.java82 * Indicates whether or not {@link #notifyDataSetChanged()} must be called whenever
182 if (mNotifyOnChange) notifyDataSetChanged();
198 if (mNotifyOnChange) notifyDataSetChanged();
214 if (mNotifyOnChange) notifyDataSetChanged();
231 if (mNotifyOnChange) notifyDataSetChanged();
247 if (mNotifyOnChange) notifyDataSetChanged();
261 if (mNotifyOnChange) notifyDataSetChanged();
278 if (mNotifyOnChange) notifyDataSetChanged();
285 public void notifyDataSetChanged() { method in class:ArrayAdapter
286 super.notifyDataSetChanged();
[all...]
H A DCursorTreeAdapter.java297 public void notifyDataSetChanged() { method in class:CursorTreeAdapter
298 notifyDataSetChanged(true);
308 public void notifyDataSetChanged(boolean releaseCursors) { method in class:CursorTreeAdapter
314 super.notifyDataSetChanged();
464 notifyDataSetChanged(releaseCursors);
512 notifyDataSetChanged();
H A DSuggestionsAdapter.java215 public void notifyDataSetChanged() { method in class:SuggestionsAdapter
216 if (DBG) Log.d(LOG_TAG, "notifyDataSetChanged");
217 super.notifyDataSetChanged();
H A DRemoteViewsAdapter.java130 * This defers a notifyDataSetChanged on the pending RemoteViewsAdapter if it has not
203 // Handle queued notifyDataSetChanged() if necessary
562 // position is guaranteed as not being necessary any more (usually on notifyDataSetChanged).
777 // is invalidated through the notifyDataSetChanged() flow).
961 // a notifyDataSetChanged to update the widget accordingly
1151 // Requesting bind service will trigger a super.notifyDataSetChanged(), which will
1250 // Complete the actual notifyDataSetChanged() call initiated earlier
1333 public void notifyDataSetChanged() { method in class:RemoteViewsAdapter
1337 // If we are not connected, queue up the notifyDataSetChanged to be handled when we do
1358 super.notifyDataSetChanged();
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerAdapter.java72 * main thread and must end with a call to {@link #notifyDataSetChanged()} similar
275 public void notifyDataSetChanged() { method in class:PagerAdapter
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuPresenter.java91 mAdapter.notifyDataSetChanged();
125 if (mAdapter != null) mAdapter.notifyDataSetChanged();
279 public void notifyDataSetChanged() { method in class:ListMenuPresenter.MenuAdapter
281 super.notifyDataSetChanged();
H A DMenuPopupHelper.java273 mAdapter.notifyDataSetChanged();
410 public void notifyDataSetChanged() { method in class:MenuPopupHelper.MenuAdapter
412 super.notifyDataSetChanged();
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java95 notifyDataSetChanged();
101 notifyDataSetChanged();
111 notifyDataSetChanged();
125 notifyDataSetChanged();
140 notifyDataSetChanged();
227 notifyDataSetChanged();
530 notifyDataSetChanged();
535 public void notifyDataSetChanged() { method in class:CompositeCursorAdapter
538 super.notifyDataSetChanged();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DListMenuPresenter.java95 mAdapter.notifyDataSetChanged();
129 if (mAdapter != null) mAdapter.notifyDataSetChanged();
283 public void notifyDataSetChanged() { method in class:ListMenuPresenter.MenuAdapter
285 super.notifyDataSetChanged();
H A DMenuPopupHelper.java261 mAdapter.notifyDataSetChanged();
398 public void notifyDataSetChanged() { method in class:MenuPopupHelper.MenuAdapter
400 super.notifyDataSetChanged();
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSuggestionsAdapter.java179 public void notifyDataSetChanged() { method in class:SuggestionsAdapter
180 if (DBG) Log.d(LOG_TAG, "notifyDataSetChanged");
181 super.notifyDataSetChanged();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java120 * adapter positions if {@link Adapter#notifyDataSetChanged()} has been called and new layout has
2856 * {@link Adapter#notifyDataSetChanged()} has been called but the new layout has not been
4630 * specific change events if you can. Rely on <code>notifyDataSetChanged()</code>
4640 public final void notifyDataSetChanged() { method in class:RecyclerView.Adapter
6269 * Called when {@link Adapter#notifyDataSetChanged()} is triggered instead of giving
7177 * Note that if you've called {@link RecyclerView.Adapter#notifyDataSetChanged()}, until the
7182 * {@link RecyclerView.Adapter#notifyDataSetChanged()} has been called after the last

Completed in 6085 milliseconds