diff options
author | Jim Miller <jaggies@google.com> | 2012-11-12 17:54:22 -0800 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2012-11-12 17:54:22 -0800 |
commit | c120b6e99ab9982b046772e8d41cf4f27e9f1026 (patch) | |
tree | 27e98e8af8d300e4ed4781156ba863ee2955f92d /packages/SystemUI/res/layout-sw600dp | |
parent | 3012b393616812258cee6b4922afdc49b01a22ae (diff) | |
download | frameworks_base-c120b6e99ab9982b046772e8d41cf4f27e9f1026.zip frameworks_base-c120b6e99ab9982b046772e8d41cf4f27e9f1026.tar.gz frameworks_base-c120b6e99ab9982b046772e8d41cf4f27e9f1026.tar.bz2 |
Fix "keyguard unresponsive" bug
This fixes a bug where the code would pop up SearchPanelView and never
close it. The result is that the overlapping window would absorb all input
events and effectively prevent the user from entering their pin/pattern/password.
The fix is to replace ImageView with KeyButtonView to make the behavior consistent
with how it's handle in home screen.
Fixes bug 7520075
Change-Id: I461bf2844c023fd7a2dffca1177cc5951f30dba0
Diffstat (limited to 'packages/SystemUI/res/layout-sw600dp')
-rw-r--r-- | packages/SystemUI/res/layout-sw600dp/navigation_bar.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/res/layout-sw600dp/navigation_bar.xml b/packages/SystemUI/res/layout-sw600dp/navigation_bar.xml index 2669c7e..b1104cc 100644 --- a/packages/SystemUI/res/layout-sw600dp/navigation_bar.xml +++ b/packages/SystemUI/res/layout-sw600dp/navigation_bar.xml @@ -141,7 +141,7 @@ /> </LinearLayout> - <ImageView + <com.android.systemui.statusbar.policy.KeyButtonView android:layout_width="128dp" android:id="@+id/search_light" android:layout_height="match_parent" @@ -282,7 +282,7 @@ /> </LinearLayout> - <ImageView + <com.android.systemui.statusbar.policy.KeyButtonView android:layout_width="162dp" android:id="@+id/search_light" android:layout_height="match_parent" |