diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-05-13 13:31:06 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-05-13 13:31:06 -0700 |
commit | 85afd1b6f871d471fdff1980134676a5f1690525 (patch) | |
tree | 94f1a2661418208e7969d659dc694353ff43d304 /tools/layoutlib | |
parent | dca5fb9e7e193d6aed233e0650691675a56022a3 (diff) | |
download | frameworks_base-85afd1b6f871d471fdff1980134676a5f1690525.zip frameworks_base-85afd1b6f871d471fdff1980134676a5f1690525.tar.gz frameworks_base-85afd1b6f871d471fdff1980134676a5f1690525.tar.bz2 |
Implement new window cropping.
The window manager now performs the crop internally, evaluating
it every animation from, to be able to update it along with
the surface position.
Change-Id: I960a2161b9defb6fba4840fa35aee4e411c39b32
Diffstat (limited to 'tools/layoutlib')
-rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java | 2 |
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 c44ddc6..379fb81 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 argBlah, Rect arg2, Rect arg3, + public void resized(int arg0, int arg1, Rect arg2, Rect arg3, boolean arg4, Configuration arg5) throws RemoteException { // pass for now. } |