From 41fe89a84a0be15bd458dd81d8f3acae7939e7ff Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Thu, 2 Jun 2016 15:27:56 -0700 Subject: [PATCH] Fixed a bug where talkback couldn't scroll through notifications Change-Id: Idac298efe3a25be1d435776817180c3acf78bf84 Fixes: 29046169 --- .../statusbar/stack/NotificationStackScrollLayout.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java index 4c242ccf691c7..3499146bd29b9 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java @@ -53,6 +53,7 @@ import android.view.accessibility.AccessibilityNodeInfo; import android.view.animation.AnimationUtils; import android.view.animation.Interpolator; import android.widget.OverScroller; +import android.widget.ScrollView; import com.android.internal.logging.MetricsLogger; import com.android.internal.logging.MetricsProto.MetricsEvent; @@ -3573,6 +3574,8 @@ public class NotificationStackScrollLayout extends ViewGroup info.addAction(AccessibilityNodeInfo.AccessibilityAction.ACTION_SCROLL_DOWN); } } + // Talkback only listenes to scroll events of certain classes, let's make us a scrollview + info.setClassName(ScrollView.class.getName()); } /** @hide */