Home
last modified time | relevance | path

Searched refs:oldTop (Results 1 – 5 of 5) sorted by relevance

/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
DExpandingListView.java181 final int oldTop = view.getTop();
218 int oldHeight = oldBottom - oldTop;
221 mTranslate = getTopAndBottomTranslations(oldTop, oldBottom, delta, true);
224 int futureTop = oldTop - mTranslate[0];
281 int delta = old[0] < oldTop ? -yTranslateTop : yTranslateBottom;
377 final int oldTop = view.getTop();
410 int oldHeight = oldBottom - oldTop;
413 mTranslate = getTopAndBottomTranslations(oldTop, oldBottom, deltaHeight, false);
416 int futureTop = oldTop + mTranslate[0];
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
DCurvedMotion.java57 final int oldTop = mButton.getTop(); in onCreate()
72 int deltaY = top - oldTop; in onCreate()
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/
DRecyclerViewActivity.java111 int oldTop = getPaddingTop(); in onLayoutChildren() local
113 oldTop = oldTopView.getTop(); in onLayoutChildren()
118 int top = oldTop; in onLayoutChildren()
DAnimatedRecyclerView.java207 int oldTop = getPaddingTop(); in onLayoutChildren() local
209 oldTop = Math.min(oldTopView.getTop(), oldTop); in onLayoutChildren()
216 int top = oldTop; in onLayoutChildren()
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DPathAnimations.java123 int oldTop, int oldRight, int oldBottom) { in onLayoutChange() argument