diff options
author | Jim Miller <jaggies@google.com> | 2015-02-12 21:48:10 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-02-12 21:48:11 +0000 |
commit | b2ff8d9a3e5f279e7a60a12f9192e43081e2eef9 (patch) | |
tree | 5710bd621f812cefe29ca5e7b76a55f4adba295d | |
parent | 20be0e25ba660a7555577988cefcfa36d84e7e2f (diff) | |
parent | 959ea56f3477d16b054d774e86b0f2dc4b500ba0 (diff) | |
download | frameworks_base-b2ff8d9a3e5f279e7a60a12f9192e43081e2eef9.zip frameworks_base-b2ff8d9a3e5f279e7a60a12f9192e43081e2eef9.tar.gz frameworks_base-b2ff8d9a3e5f279e7a60a12f9192e43081e2eef9.tar.bz2 |
Merge "Fix accessibility focus bug in statusbar" into lmp-mr1-dev
-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> |