summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2015-07-06 17:19:48 -0700
committerSunny Goyal <sunnygoyal@google.com>2015-07-06 17:20:24 -0700
commitf89aa3579a42f234b045546257b8e449e2c6fa8f (patch)
treefe8bfdf6cb1021280ebe5cfcb4271425bbbcc946 /src
parentbccc43bd8bae92e3e06099a5f4d6a5d5f1ec07df (diff)
downloadandroid_packages_apps_Trebuchet-f89aa3579a42f234b045546257b8e449e2c6fa8f.tar.gz
android_packages_apps_Trebuchet-f89aa3579a42f234b045546257b8e449e2c6fa8f.tar.bz2
android_packages_apps_Trebuchet-f89aa3579a42f234b045546257b8e449e2c6fa8f.zip
Hiding workspace from accessibility when its not visible
Bug: 22234780 Change-Id: Ie91ec59c3c3abb26fdf40466ea8173c78acb320f
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/Workspace.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/com/android/launcher3/Workspace.java b/src/com/android/launcher3/Workspace.java
index fb0a54d3c..451f1245e 100644
--- a/src/com/android/launcher3/Workspace.java
+++ b/src/com/android/launcher3/Workspace.java
@@ -1976,7 +1976,7 @@ public class Workspace extends PagedView
public Animator setStateWithAnimation(State toState, int toPage, boolean animated,
boolean hasOverlaySearchBar, HashMap<View, Integer> layerViews) {
// Create the animation to the new state
- Animator workspaceAnim = mStateTransitionAnimation.getAnimationToState(getState(),
+ Animator workspaceAnim = mStateTransitionAnimation.getAnimationToState(mState,
toState, toPage, animated, hasOverlaySearchBar, layerViews);
// Update the current state
@@ -1996,6 +1996,9 @@ public class Workspace extends PagedView
for (int i = numCustomPages(); i < total; i++) {
updateAccessibilityFlags((CellLayout) getPageAt(i), i);
}
+ setImportantForAccessibility((mState == State.NORMAL || mState == State.OVERVIEW)
+ ? IMPORTANT_FOR_ACCESSIBILITY_AUTO
+ : IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
} else {
int accessible = mState == State.NORMAL ?
IMPORTANT_FOR_ACCESSIBILITY_AUTO :