summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2015-02-12 21:48:10 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-02-12 21:48:11 +0000
commitb2ff8d9a3e5f279e7a60a12f9192e43081e2eef9 (patch)
tree5710bd621f812cefe29ca5e7b76a55f4adba295d
parent20be0e25ba660a7555577988cefcfa36d84e7e2f (diff)
parent959ea56f3477d16b054d774e86b0f2dc4b500ba0 (diff)
downloadbase-b2ff8d9a3e5f279e7a60a12f9192e43081e2eef9.tar.gz
Merge "Fix accessibility focus bug in statusbar" into lmp-mr1-dev
-rw-r--r--packages/SystemUI/res/layout/super_status_bar.xml10
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 6d3f976a73e9..532e1b7ff17d 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>