summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2015-02-18 17:55:26 -0800
committerThe Android Automerger <android-build@google.com>2015-02-18 20:57:18 -0800
commitd0f748a7d095fc23bde005b68277dd931349e2f8 (patch)
treebb8fa8fc5f33435e2c0a050f1f2164787105f0b2
parent4cbffa6f43e9d74827f9c9bb481a5d759ef7a1a3 (diff)
downloadbase-d0f748a7d095fc23bde005b68277dd931349e2f8.tar.gz
Fix accessibility focus bug in statusbarandroid-5.1.0_r1
The notification_stack_scroller view of the new uber statusbar should not be focusable for accessibility Fixes bug 19296202 Change-Id: I1b3f43ee3c480c705044cb3d565c7c7f7019bcc3
-rw-r--r--packages/SystemUI/res/layout/status_bar_expanded.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/res/layout/status_bar_expanded.xml b/packages/SystemUI/res/layout/status_bar_expanded.xml
index f6d4be54bfd2..5c41436e1323 100644
--- a/packages/SystemUI/res/layout/status_bar_expanded.xml
+++ b/packages/SystemUI/res/layout/status_bar_expanded.xml
@@ -97,7 +97,8 @@
android:layout_width="@dimen/notification_panel_width"
android:layout_height="match_parent"
android:layout_gravity="@integer/notification_panel_layout_gravity"
- android:layout_marginBottom="@dimen/close_handle_underlap" />
+ android:layout_marginBottom="@dimen/close_handle_underlap"
+ android:importantForAccessibility="no" />
<ViewStub
android:id="@+id/keyguard_user_switcher"