summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSvetoslav Ganov <svetoslavganov@google.com>2012-08-06 16:40:27 -0700
committerSvetoslav Ganov <svetoslavganov@google.com>2012-08-06 23:49:38 -0700
commit758143ecfedbe08cc6c4fed0ad8ad7a854194ca4 (patch)
treec7102e7f3b5f71180cb23d1a13c01158f558feb6 /tools
parent4cb3384772cf7015a4e05789470123efb07219d9 (diff)
downloadframeworks_base-758143ecfedbe08cc6c4fed0ad8ad7a854194ca4.zip
frameworks_base-758143ecfedbe08cc6c4fed0ad8ad7a854194ca4.tar.gz
frameworks_base-758143ecfedbe08cc6c4fed0ad8ad7a854194ca4.tar.bz2
Window position not reported if the window is not moved.
1.If a window is shown but never moved the window window is never notified for its current location. Therefore, accessibility nodes do not contain correct bounds in screen coordinates. bug:6926295 Change-Id: I7df18b095d33ecafffced75aba9e4f4693b0c393
Diffstat (limited to 'tools')
-rw-r--r--tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java
index e28375d..fa660e6 100644
--- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java
+++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java
@@ -47,7 +47,7 @@ public final class BridgeWindow implements IWindow {
}
@Override
- public void resized(int arg0, int arg1, Rect arg2, Rect arg3,
+ public void resized(Rect arg1, Rect arg2, Rect arg3,
boolean arg4, Configuration arg5) throws RemoteException {
// pass for now.
}