Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/transition/
H A DChangeBounds.java90 public void set(ViewBounds viewBounds, PointF topLeft) {
91 viewBounds.setTopLeft(topLeft);
95 public PointF get(ViewBounds viewBounds) {
103 public void set(ViewBounds viewBounds, PointF bottomRight) {
104 viewBounds.setBottomRight(bottomRight);
108 public PointF get(ViewBounds viewBounds) {
360 final ViewBounds viewBounds = new ViewBounds(view); in createAnimator() local
364 .ofObject(viewBounds, TOP_LEFT_PROPERTY, null, topLeftPath); in createAnimator()
368 ObjectAnimator bottomRightAnimator = ObjectAnimator.ofObject(viewBounds, in createAnimator()
376 private ViewBounds mViewBounds = viewBounds; in createAnimator()