commit | 32f2b2f07575c3db77ad2a50dcc664f4a598c80f | [log] [tgz] |
---|---|---|
author | Jagrut Desai <jagrutdesai@google.com> | Fri Jun 09 22:41:30 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Jun 09 22:41:30 2023 +0000 |
tree | 71ba6af5ffe7925628293f61c61a3a45130e877f | |
parent | 25b8fef133690c2387b7ec7ad063a913c79ecfab [diff] | |
parent | 2d5bb34b6bc5de428c8aa6e4e6dea25031a43ae5 [diff] |
Merge "Set AccessibilityPaneTitle for taskbar view" into udc-dev am: 2d5bb34b6b Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/23624910 Change-Id: I26f878b4c2631be85a6ae888f267768546995853 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/quickstep/src/com/android/launcher3/taskbar/TaskbarView.java b/quickstep/src/com/android/launcher3/taskbar/TaskbarView.java index 4217de6..bf3b932 100644 --- a/quickstep/src/com/android/launcher3/taskbar/TaskbarView.java +++ b/quickstep/src/com/android/launcher3/taskbar/TaskbarView.java
@@ -211,6 +211,8 @@ } protected void init(TaskbarViewController.TaskbarViewCallbacks callbacks) { + // set taskbar pane title so that accessibility service know it window and focuses. + setAccessibilityPaneTitle(getContext().getString(R.string.taskbar_a11y_title)); mControllerCallbacks = callbacks; mIconClickListener = mControllerCallbacks.getIconOnClickListener(); mIconLongClickListener = mControllerCallbacks.getIconOnLongClickListener();