Searched defs:postOnAnimation (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/compat/jellybean/android/support/v4/view/
H A DViewCompatJB.java46 public static void postOnAnimation(View view, Runnable action) { method in class:ViewCompatJB
47 view.postOnAnimation(action);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java385 void postOnAnimation(View view, Runnable action); method in interface:ViewCompat.ViewCompatImpl
551 public void postOnAnimation(View view, Runnable action) { method in class:ViewCompat.BaseViewCompatImpl
1440 public void postOnAnimation(View view, Runnable action) { method in class:ViewCompat.JBViewCompatImpl
1441 ViewCompatJB.postOnAnimation(view, action);
2099 public static void postOnAnimation(View view, Runnable action) { method in class:ViewCompat
2100 IMPL.postOnAnimation(view, action);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java3105 ViewCompat.postOnAnimation(this, mItemAnimatorRunner);
4541 // When set to true, postOnAnimation callbacks are delayed until the run method completes
4652 postOnAnimation();
4678 postOnAnimation();
4682 void postOnAnimation() { method in class:RecyclerView.ViewFlinger
4687 ViewCompat.postOnAnimation(RecyclerView.this, this);
4696 postOnAnimation();
4747 postOnAnimation();
4833 ViewCompat.postOnAnimation(RecyclerView.this, mUpdateChildViewsRunnable);
6948 public void postOnAnimation(Runnabl method in class:RecyclerView.LayoutManager
[all...]
/frameworks/base/core/java/android/view/
H A DView.java13980 public void postOnAnimation(Runnable action) { method in class:View
14001 * @see #postOnAnimation
14028 * @see #postOnAnimation

Completed in 3618 milliseconds