am 618d5768: am ba607f4d: am 2232addd: Offset accessibility focus rect for view root\'s scrollY

* commit '618d57689989e3442fbe90797dfe04437f5654b9':
  Offset accessibility focus rect for view root's scrollY
This commit is contained in:
Alan Viverette
2015-05-27 01:30:11 +00:00
committed by Android Git Automerger

View File

@@ -2787,7 +2787,9 @@ public final class ViewRootImpl implements ViewParent,
return false;
}
// Transform the rect into window-relative coordinates.
final AttachInfo attachInfo = mAttachInfo;
bounds.offset(0, attachInfo.mViewRootImpl.mScrollY);
bounds.offset(-attachInfo.mWindowLeft, -attachInfo.mWindowTop);
bounds.intersect(0, 0, attachInfo.mViewRootImpl.mWidth, attachInfo.mViewRootImpl.mHeight);
return !bounds.isEmpty();