From 4b37887942cd546f15ac2d2a2fdee748213089dd Mon Sep 17 00:00:00 2001 From: Adam Cohen Date: Fri, 4 Oct 2013 18:58:04 -0700 Subject: [PATCH] Fix issue where TalkBack would announce Apps instead of Widgets (issue 11012666) Change-Id: Ia25c370d706055bee4a5766cfdea20b637e936b4 --- src/com/android/launcher3/Launcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/launcher3/Launcher.java b/src/com/android/launcher3/Launcher.java index a11c487bc9..f2f49628ef 100644 --- a/src/com/android/launcher3/Launcher.java +++ b/src/com/android/launcher3/Launcher.java @@ -3462,7 +3462,7 @@ public class Launcher extends Activity text.clear(); // Populate event with a fake title based on the current state. if (mState == State.APPS_CUSTOMIZE) { - text.add(getString(R.string.all_apps_button_label)); + text.add(mAppsCustomizeTabHost.getCurrentTabView().getContentDescription()); } else { text.add(getString(R.string.all_apps_home_button_label)); }