diff options
author | Filip Gruszczynski <gruszczy@google.com> | 2015-04-20 08:40:57 -0700 |
---|---|---|
committer | Filip Gruszczynski <gruszczy@google.com> | 2015-05-20 14:20:30 -0700 |
commit | 3e11bf33a6094da92d97702213aa12c67b21c4d1 (patch) | |
tree | 49be3c98dde6651926268bbf36e0a90ae60c820f /tools | |
parent | 627f26817f752e0e1beb4185e778edc4501b4aa6 (diff) | |
download | frameworks_base-3e11bf33a6094da92d97702213aa12c67b21c4d1.zip frameworks_base-3e11bf33a6094da92d97702213aa12c67b21c4d1.tar.gz frameworks_base-3e11bf33a6094da92d97702213aa12c67b21c4d1.tar.bz2 |
Support for devices with a chin.
Information about the chin is now part of the config.xml instead of the
theme. It is retrieved by WindowManagerService and passed to the clients
as insets. Clients can adjust their behavior in a way that makes it
invisible to the user, that part of the surface doesn't actually exist.
Bug: 19908853
Change-Id: Iedf57bf3c848201b854f91ffeb3b59187d375c1f
Diffstat (limited to 'tools')
-rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindow.java | 4 |
1 files changed, 2 insertions, 2 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 4c4454d..fb5d44f 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,8 +47,8 @@ public final class BridgeWindow implements IWindow { } @Override - public void resized(Rect rect, Rect rect2, Rect rect3, Rect rect4, Rect rect5, boolean b, - Configuration configuration) throws RemoteException { + public void resized(Rect rect, Rect rect2, Rect rect3, Rect rect4, Rect rect5, Rect rect6, + boolean b, Configuration configuration) throws RemoteException { // pass for now. } |