diff options
author | Dianne Hackborn <hackbod@google.com> | 2010-03-17 19:44:59 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2010-03-18 01:12:20 -0700 |
commit | 694f79b5d1196640d1beb680b7d1fc68e6e77cbd (patch) | |
tree | 355894924374fb42cc6f8c664f34b413a90ecd7f /tools/layoutlib | |
parent | e4eb5bf243cb51b75b0717ebcd8c317a5b8fae8a (diff) | |
download | frameworks_base-694f79b5d1196640d1beb680b7d1fc68e6e77cbd.zip frameworks_base-694f79b5d1196640d1beb680b7d1fc68e6e77cbd.tar.gz frameworks_base-694f79b5d1196640d1beb680b7d1fc68e6e77cbd.tar.bz2 |
Fix issue #2519590: Lock screen stuck in landscape mode
Well, mostly. There is still a problem here where the first time
you show the lock screen it just doesn't draw itself. I assume
this is something breaking in the view hierarchy as it floounders
around removing and adding new views as it is first being shown...
but no idea at this point what is the actual case.
Change-Id: Iba99ae3242931c8673b17b106c86fc99e2c52abe
Diffstat (limited to 'tools/layoutlib')
-rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java index 8e9e75f..4201e80 100644 --- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java +++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java @@ -1032,7 +1032,7 @@ public final class Bridge implements ILayoutBridge { @SuppressWarnings("unused") public int relayout(IWindow arg0, LayoutParams arg1, int arg2, int arg3, int arg4, - boolean arg4_5, Rect arg5, Rect arg6, Rect arg7, Surface arg8) + boolean arg4_5, Rect arg5, Rect arg6, Rect arg7, Configuration arg7b, Surface arg8) throws RemoteException { // pass for now. return 0; |