diff options
author | Jim Miller <jaggies@google.com> | 2015-02-12 22:04:28 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-02-12 22:04:28 +0000 |
commit | 4bbd3cb3e8494de71ac5ac2aed49e6c56c3b9f68 (patch) | |
tree | cd3605cefb688468a5b65f81c902b528ef7e2b25 | |
parent | a673af77d95f4a3d46e5d71188256b27e06cc442 (diff) | |
parent | b1e80278f80585a1c3f46dbc578bbbafbcbd80c1 (diff) | |
download | frameworks_base-4bbd3cb3e8494de71ac5ac2aed49e6c56c3b9f68.zip frameworks_base-4bbd3cb3e8494de71ac5ac2aed49e6c56c3b9f68.tar.gz frameworks_base-4bbd3cb3e8494de71ac5ac2aed49e6c56c3b9f68.tar.bz2 |
am b1e80278: am b2ff8d9a: Merge "Fix accessibility focus bug in statusbar" into lmp-mr1-dev
* commit 'b1e80278f80585a1c3f46dbc578bbbafbcbd80c1':
Fix accessibility focus bug in statusbar
-rw-r--r-- | packages/SystemUI/res/layout/super_status_bar.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/SystemUI/res/layout/super_status_bar.xml b/packages/SystemUI/res/layout/super_status_bar.xml index 6d3f976..532e1b7 100644 --- a/packages/SystemUI/res/layout/super_status_bar.xml +++ b/packages/SystemUI/res/layout/super_status_bar.xml @@ -22,9 +22,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:focusable="true" - android:fitsSystemWindows="true" - android:descendantFocusability="afterDescendants"> + android:fitsSystemWindows="true"> <com.android.systemui.statusbar.BackDropView android:id="@+id/backdrop" @@ -45,7 +43,8 @@ <com.android.systemui.statusbar.ScrimView android:id="@+id/scrim_behind" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + android:importantForAccessibility="no" /> <include layout="@layout/status_bar" android:layout_width="match_parent" @@ -82,6 +81,7 @@ <com.android.systemui.statusbar.ScrimView android:id="@+id/scrim_in_front" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + android:importantForAccessibility="no" /> </com.android.systemui.statusbar.phone.StatusBarWindowView> |