Revert "Apply transformations while offsetting focused rects"

b/27335262

This reverts commit 83e725da7a.

Change-Id: I55079bbaab81610e9de3a8d68ed21cf352da5983
This commit is contained in:
Hyunyoung Song
2016-03-09 22:51:02 +00:00
parent 839ff816a5
commit 4eb1a4e003

View File

@@ -5357,9 +5357,6 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
void offsetRectBetweenParentAndChild(View descendant, Rect rect,
boolean offsetFromChildToParent, boolean clipToBounds) {
final RectF rectF = mAttachInfo != null ? mAttachInfo.mTmpTransformRect1 : new RectF();
final Matrix inverse = mAttachInfo != null ? mAttachInfo.mTmpMatrix : new Matrix();
// already in the same coord system :)
if (descendant == this) {
return;
@@ -5373,16 +5370,8 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
&& (theParent != this)) {
if (offsetFromChildToParent) {
rect.offset(-descendant.mScrollX, -descendant.mScrollY);
if (!descendant.hasIdentityMatrix()) {
rectF.set(rect);
descendant.getMatrix().mapRect(rectF);
rectF.roundOut(rect);
}
rect.offset(descendant.mLeft, descendant.mTop);
rect.offset(descendant.mLeft - descendant.mScrollX,
descendant.mTop - descendant.mScrollY);
if (clipToBounds) {
View p = (View) theParent;
boolean intersected = rect.intersect(0, 0, p.mRight - p.mLeft,
@@ -5400,16 +5389,8 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
rect.setEmpty();
}
}
rect.offset(-descendant.mLeft, -descendant.mTop);
if (!descendant.hasIdentityMatrix()) {
descendant.getMatrix().invert(inverse);
rectF.set(rect);
inverse.mapRect(rectF);
rectF.roundOut(rect);
}
rect.offset(descendant.mScrollX, descendant.mScrollY);
rect.offset(descendant.mScrollX - descendant.mLeft,
descendant.mScrollY - descendant.mTop);
}
descendant = (View) theParent;
@@ -5420,26 +5401,11 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
// to get into our coordinate space
if (theParent == this) {
if (offsetFromChildToParent) {
rect.offset(-descendant.mScrollX, -descendant.mScrollY);
if (!descendant.hasIdentityMatrix()) {
rectF.set(rect);
descendant.getMatrix().mapRect(rectF);
rectF.roundOut(rect);
}
rect.offset(descendant.mLeft, descendant.mTop);
rect.offset(descendant.mLeft - descendant.mScrollX,
descendant.mTop - descendant.mScrollY);
} else {
rect.offset(-descendant.mLeft, -descendant.mTop);
if (!descendant.hasIdentityMatrix()) {
descendant.getMatrix().invert(inverse);
rectF.set(rect);
inverse.mapRect(rectF);
rectF.roundOut(rect);
}
rect.offset(descendant.mScrollX, descendant.mScrollY);
rect.offset(descendant.mScrollX - descendant.mLeft,
descendant.mScrollY - descendant.mTop);
}
} else {
throw new IllegalArgumentException("parameter must be a descendant of this view");