Merge "DO NOT MERGE Fix crash related to getting the root of an unattached view" into tm-qpr-dev

This commit is contained in:
Lucas Silva
2023-04-13 19:13:03 +00:00
committed by Android (Google) Code Review

View File

@@ -90,6 +90,9 @@ public class TouchInsetManager {
final Region cumulativeRegion = Region.obtain(); final Region cumulativeRegion = Region.obtain();
mTrackedViews.stream().forEach(view -> { mTrackedViews.stream().forEach(view -> {
if (!view.isAttachedToWindow()) {
return;
}
final Rect boundaries = new Rect(); final Rect boundaries = new Rect();
view.getDrawingRect(boundaries); view.getDrawingRect(boundaries);
((ViewGroup) view.getRootView()).offsetDescendantRectToMyCoords(view, boundaries); ((ViewGroup) view.getRootView()).offsetDescendantRectToMyCoords(view, boundaries);