嗨,我一直在查看用于缩放 View 的开发人员代码,但似乎无法弄清楚该代码应该做什么:

 final ImageView expandedImageView = (ImageView) findViewById(
        R.id.expanded_image);
expandedImageView.setImageResource(imageResId);

// Calculate the starting and ending bounds for the zoomed-in image.
// This step involves lots of math. Yay, math.
final Rect startBounds = new Rect();
final Rect finalBounds = new Rect();
final Point globalOffset = new Point();

// The start bounds are the global visible rectangle of the thumbnail,
// and the final bounds are the global visible rectangle of the container
// view. Also set the container view's offset as the origin for the
// bounds, since that's the origin for the positioning animation
// properties (X, Y).
thumbView.getGlobalVisibleRect(startBounds);
findViewById(R.id.container)
        .getGlobalVisibleRect(finalBounds, globalOffset);
startBounds.offset(-globalOffset.x, -globalOffset.y);
finalBounds.offset(-globalOffset.x, -globalOffset.y);

1)具体来说,我不确定getGlobalVisibleRect(finalBounds,globalOffset)应该做什么?

2)另外,startBounds.offset()应该做什么,-globalOffset.x,-globalOffset.y甚至意味着什么?

最佳答案

  • getGlobalVisibleRect(finalBounds,globalOffset)返回容器的 View 全局位置,而globalOffset是整个屏幕的偏移量。所以在这段代码中,globalOffset.x为0,globalOffset.y为75(在我的手机中,75是状态栏的高度)如果我调用finalBounds.off(-globalOffset.x,-globalOffset.y),finalBounds具有(0,0,origin-0,origin-75),表示finalBounds是局部坐标,而不是全局坐标。
    容器 View 很重要,因为它提供了两个图像的基本坐标。
  • 在调用startBounds.offset之前,startBounds具有thumbView的全局位置。
    startBounds.offset()确实使startBounds成为容器 View 的本地坐标。
    finalBounds.offset()做同样的事情。现在,startBounds和finalBounds具有相同的相对坐标,因此制作过渡动画变得容易。
  • 如果使用globalrect,则宽度/高度将是错误的。
  • 10-07 20:08