am db3aa6be: am 04bea090: am 0224d25d: Merge "Account for window bounds in accessibility view click point computation" into lmp-mr1-dev

* commit 'db3aa6be933b732c57e7e124f40388b0695a3638':
  Account for window bounds in accessibility view click point computation
This commit is contained in:
Alan Viverette
2014-11-14 19:18:32 +00:00
committed by Android Git Automerger

View File

@@ -5901,6 +5901,12 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
region.op(interactiveRegion, Region.Op.INTERSECT);
}
// Take into account the window bounds.
final View root = getRootView();
if (root != null) {
region.op(dx, dy, root.getWidth() + dx, root.getHeight() + dy, Region.Op.INTERSECT);
}
// If the view is completely covered, done.
if (region.isEmpty()) {
return false;