Merge "Fix accessibility announce on apps page" into ub-now-nova

This commit is contained in:
Jason Monk
2014-04-24 16:33:06 +00:00
committed by Android (Google) Code Review
2 changed files with 17 additions and 0 deletions
+8
View File
@@ -1466,6 +1466,14 @@ public class Workspace extends SmoothPagedView
mWallpaperOffset.syncWithScroll();
}
@Override
public void announceForAccessibility(CharSequence text) {
// Don't announce if apps is on top of us.
if (!mLauncher.isAllAppsVisible()) {
super.announceForAccessibility(text);
}
}
void showOutlines() {
if (!isSmall() && !mIsSwitchingState) {
if (mChildrenOutlineFadeOutAnimation != null) mChildrenOutlineFadeOutAnimation.cancel();