Searched defs:notifyDataSetChanged (Results 1 - 20 of 20) 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.java117 * Indicates whether or not {@link #notifyDataSetChanged()} must be called whenever
231 if (mNotifyOnChange) notifyDataSetChanged();
257 if (mNotifyOnChange) notifyDataSetChanged();
274 if (mNotifyOnChange) notifyDataSetChanged();
292 if (mNotifyOnChange) notifyDataSetChanged();
309 if (mNotifyOnChange) notifyDataSetChanged();
324 if (mNotifyOnChange) notifyDataSetChanged();
341 if (mNotifyOnChange) notifyDataSetChanged();
345 public void notifyDataSetChanged() { method in class:ArrayAdapter
346 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
221 // Handle queued notifyDataSetChanged() if necessary
530 // position is guaranteed as not being necessary any more (usually on notifyDataSetChanged).
737 // is invalidated through the notifyDataSetChanged() flow).
919 // a notifyDataSetChanged to update the widget accordingly
1099 // Requesting bind service will trigger a super.notifyDataSetChanged(), which will
1153 // Complete the actual notifyDataSetChanged() call initiated earlier
1243 public void notifyDataSetChanged() { method in class:RemoteViewsAdapter
1247 // If we are not connected, queue up the notifyDataSetChanged to be handled when we do
1264 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.java121 public void notifyDataSetChanged() { method in class:MenuAdapter
123 super.notifyDataSetChanged();
H A DListMenuPresenter.java98 mAdapter.notifyDataSetChanged();
132 if (mAdapter != null) mAdapter.notifyDataSetChanged();
292 public void notifyDataSetChanged() { method in class:ListMenuPresenter.MenuAdapter
294 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
H A DRecyclerView.java129 * adapter positions if {@link Adapter#notifyDataSetChanged()} has been called and new layout has
230 * calling notifyDataSetChanged or setAdapter / swapAdapter. Adding stable ids to your adapter
1595 // if it is only an item change (no add-remove-notifyDataSetChanged) we can check if any
4069 * swapAdapter, or notifyDataSetChanged), and that once layout occurs, all attached items should
4308 * {@link Adapter#notifyDataSetChanged()} has been called but the new layout has not been
6574 * specific change events if you can. Rely on <code>notifyDataSetChanged()</code>
6584 public final void notifyDataSetChanged() { method in class:RecyclerView.Adapter
9052 * Called when {@link Adapter#notifyDataSetChanged()} is triggered instead of giving
10146 * Note that if you've called {@link RecyclerView.Adapter#notifyDataSetChanged()}, until the
10151 * {@link RecyclerView.Adapter#notifyDataSetChanged()} ha
[all...]
/frameworks/support/core-ui/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.java441 public void notifyDataSetChanged() throws Throwable { method in class:ItemAnimatorV2ApiTest
499 adapter.notifyDataSetChanged();
537 adapter.notifyDataSetChanged();
H A DRecyclerViewAnimationsTest.java1106 public void notifyDataSetChanged() throws Throwable { method in class:RecyclerViewAnimationsTest
1359 mTestAdapter.notifyDataSetChanged();
1488 mTestAdapter.notifyDataSetChanged();
/frameworks/support/wear/src/android/support/wear/widget/drawer/
H A DWearableNavigationDrawerView.java271 public void notifyDataSetChanged() { method in class:WearableNavigationDrawerView.WearableNavigationDrawerAdapter
278 "adapter.notifyDataSetChanged called before drawer.setAdapter; ignoring.");
H A DPageIndicatorView.java620 public void notifyDataSetChanged() { method in class:PageIndicatorView
/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.java178 public void notifyDataSetChanged() { method in class:SuggestionsAdapter
179 if (DBG) Log.d(LOG_TAG, "notifyDataSetChanged");
180 super.notifyDataSetChanged();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java145 * adapter positions if {@link Adapter#notifyDataSetChanged()} has been called and new layout has
249 * calling notifyDataSetChanged or setAdapter / swapAdapter. Adding stable ids to your adapter
1694 // if it is only an item change (no add-remove-notifyDataSetChanged) we can check if any
4237 * swapAdapter, or notifyDataSetChanged), and that once layout occurs, all attached items should
4461 * {@link Adapter#notifyDataSetChanged()} has been called but the new layout has not been
6743 * specific change events if you can. Rely on <code>notifyDataSetChanged()</code>
6753 public final void notifyDataSetChanged() { method in class:RecyclerView.Adapter
9435 * Called when {@link Adapter#notifyDataSetChanged()} is triggered instead of giving
10534 * Note that if you've called {@link RecyclerView.Adapter#notifyDataSetChanged()}, until the
10539 * {@link RecyclerView.Adapter#notifyDataSetChanged()} ha
[all...]

Completed in 3514 milliseconds