Home
last modified time | relevance | path

Searched refs:globalOffset (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/docs/html/training/animation/
Dzoom.jd209 final Point globalOffset = new Point();
218 .getGlobalVisibleRect(finalBounds, globalOffset);
219 startBounds.offset(-globalOffset.x, -globalOffset.y);
220 finalBounds.offset(-globalOffset.x, -globalOffset.y);
/frameworks/base/core/java/android/view/
DView.java13169 public boolean getGlobalVisibleRect(Rect r, Point globalOffset) { in getGlobalVisibleRect() argument
13174 if (globalOffset != null) { in getGlobalVisibleRect()
13175 globalOffset.set(-mScrollX, -mScrollY); in getGlobalVisibleRect()
13177 return mParent == null || mParent.getChildVisibleRect(this, r, globalOffset); in getGlobalVisibleRect()