diff options
| author | Jim Miller <jaggies@google.com> | 2015-02-12 22:10:48 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2015-02-12 22:10:48 +0000 |
| commit | 0bb60712f736fef0c3509231afed0fff7f8bfd2b (patch) | |
| tree | ce7cec99f0dd32e67464e93a42927f9da159c155 | |
| parent | 615adb8bc80efa8c4b6d45387a500e8ab77bc692 (diff) | |
| parent | 4bbd3cb3e8494de71ac5ac2aed49e6c56c3b9f68 (diff) | |
| download | frameworks_base-0bb60712f736fef0c3509231afed0fff7f8bfd2b.zip frameworks_base-0bb60712f736fef0c3509231afed0fff7f8bfd2b.tar.gz frameworks_base-0bb60712f736fef0c3509231afed0fff7f8bfd2b.tar.bz2 | |
am 4bbd3cb3: am b1e80278: am b2ff8d9a: Merge "Fix accessibility focus bug in statusbar" into lmp-mr1-dev
* commit '4bbd3cb3e8494de71ac5ac2aed49e6c56c3b9f68':
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> |
