Searched defs:notifyDataSetChanged (Results 1 - 17 of 17) 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.java93 * Indicates whether or not {@link #notifyDataSetChanged()} must be called whenever
200 if (mNotifyOnChange) notifyDataSetChanged();
225 if (mNotifyOnChange) notifyDataSetChanged();
241 if (mNotifyOnChange) notifyDataSetChanged();
258 if (mNotifyOnChange) notifyDataSetChanged();
274 if (mNotifyOnChange) notifyDataSetChanged();
288 if (mNotifyOnChange) notifyDataSetChanged();
305 if (mNotifyOnChange) notifyDataSetChanged();
309 public void notifyDataSetChanged() { method in class:ArrayAdapter
310 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.java216 public void notifyDataSetChanged() { method in class:SuggestionsAdapter
217 if (DBG) Log.d(LOG_TAG, "notifyDataSetChanged");
218 super.notifyDataSetChanged();
H A DRemoteViewsAdapter.java130 * This defers a notifyDataSetChanged on the pending RemoteViewsAdapter if it has not
203 // Handle queued notifyDataSetChanged() if necessary
532 // position is guaranteed as not being necessary any more (usually on notifyDataSetChanged).
739 // is invalidated through the notifyDataSetChanged() flow).
921 // a notifyDataSetChanged to update the widget accordingly
1097 // Requesting bind service will trigger a super.notifyDataSetChanged(), which will
1144 // Complete the actual notifyDataSetChanged() call initiated earlier
1234 public void notifyDataSetChanged() { method in class:RemoteViewsAdapter
1238 // If we are not connected, queue up the notifyDataSetChanged to be handled when we do
1255 super.notifyDataSetChanged();
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuAdapter.java109 public void notifyDataSetChanged() { method in class:MenuAdapter
111 super.notifyDataSetChanged();
H A DListMenuPresenter.java93 mAdapter.notifyDataSetChanged();
127 if (mAdapter != null) mAdapter.notifyDataSetChanged();
281 public void notifyDataSetChanged() { method in class:ListMenuPresenter.MenuAdapter
283 super.notifyDataSetChanged();
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuAdapter.java113 public void notifyDataSetChanged() { method in class:MenuAdapter
115 super.notifyDataSetChanged();
H A DListMenuPresenter.java94 mAdapter.notifyDataSetChanged();
128 if (mAdapter != null) mAdapter.notifyDataSetChanged();
282 public void notifyDataSetChanged() { method in class:ListMenuPresenter.MenuAdapter
284 super.notifyDataSetChanged();
/frameworks/base/core/java/com/android/internal/widget/
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/support/v4/java/android/support/v4/view/
H A DPagerAdapter.java72 * main thread and must end with a call to {@link #notifyDataSetChanged()} similar
281 public void notifyDataSetChanged() { method in class:PagerAdapter
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DItemAnimatorV2ApiTest.java442 public void notifyDataSetChanged() throws Throwable { method in class:ItemAnimatorV2ApiTest
500 adapter.notifyDataSetChanged();
538 adapter.notifyDataSetChanged();
H A DRecyclerViewAnimationsTest.java1090 public void notifyDataSetChanged() throws Throwable { method in class:RecyclerViewAnimationsTest
1343 mTestAdapter.notifyDataSetChanged();
1470 mTestAdapter.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/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.java142 * adapter positions if {@link Adapter#notifyDataSetChanged()} has been called and new layout has
220 * calling notifyDataSetChanged or setAdapter / swapAdapter. Adding stable ids to your adapter
1486 // if it is only an item change (no add-remove-notifyDataSetChanged) we can check if any
4017 * {@link Adapter#notifyDataSetChanged()} has been called but the new layout has not been
6033 * specific change events if you can. Rely on <code>notifyDataSetChanged()</code>
6043 public final void notifyDataSetChanged() { method in class:RecyclerView.Adapter
8386 * Called when {@link Adapter#notifyDataSetChanged()} is triggered instead of giving
9476 * Note that if you've called {@link RecyclerView.Adapter#notifyDataSetChanged()}, until the
9481 * {@link RecyclerView.Adapter#notifyDataSetChanged()} has been called after the last
10773 * Adapter {@link Adapter#notifyDataSetChanged()} ha
[all...]

Completed in 4228 milliseconds