summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSvetoslav Ganov <svetoslavganov@google.com>2012-10-19 14:22:44 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-10-19 14:22:45 -0700
commit303f621e574e69d46e207530737e279ed42d9c43 (patch)
treeccfb68f20b4b70a0fdf9f543382498116b77b46f
parent381fe4ce6fb465253c8e9bc42c2836f0c40e6231 (diff)
parent1d4fde686433ddfa7f940e298d935433ecfed8eb (diff)
downloadandroid_packages_apps_Trebuchet-303f621e574e69d46e207530737e279ed42d9c43.tar.gz
android_packages_apps_Trebuchet-303f621e574e69d46e207530737e279ed42d9c43.tar.bz2
android_packages_apps_Trebuchet-303f621e574e69d46e207530737e279ed42d9c43.zip
Merge "Send correctly populated Accessibility event on Launcher state change." into jb-mr1-dev
-rw-r--r--src/com/android/launcher2/Launcher.java17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java
index 2c5f2b55c..56fdbb60c 100644
--- a/src/com/android/launcher2/Launcher.java
+++ b/src/com/android/launcher2/Launcher.java
@@ -2784,8 +2784,9 @@ public final class Launcher extends Activity
mUserPresent = true;
updateRunning();
- // send an accessibility event to announce the context change
- getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
+ // Send an accessibility event to announce the context change
+ getWindow().getDecorView()
+ .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
}
void showAllApps(boolean animated) {
@@ -2803,7 +2804,8 @@ public final class Launcher extends Activity
closeFolder();
// Send an accessibility event to announce the context change
- getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
+ getWindow().getDecorView()
+ .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
}
void enterSpringLoadedDragMode() {
@@ -3177,10 +3179,15 @@ public final class Launcher extends Activity
@Override
public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
- boolean result = super.dispatchPopulateAccessibilityEvent(event);
+ final boolean result = super.dispatchPopulateAccessibilityEvent(event);
final List<CharSequence> text = event.getText();
text.clear();
- text.add(getString(R.string.home));
+ // 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));
+ } else {
+ text.add(getString(R.string.all_apps_home_button_label));
+ }
return result;
}