[automerger] Fixing wrong accessibility focus when opening a floating view am: de75321542
Change-Id: Idb4db3d979a4017804b744c06524905f39f8146e
This commit is contained in:
commit
6e2a403d78
|
@ -244,6 +244,11 @@
|
|||
<!-- Title for a bottom sheet that shows widgets for a particular app -->
|
||||
<string name="widgets_bottom_sheet_title"><xliff:g id="name" example="Messenger">%1$s</xliff:g> widgets</string>
|
||||
|
||||
<!-- Accessibility title for the popup containing a list of widgets. [CHAR_LIMIT=50] -->
|
||||
<string name="widgets_list">Widgets list</string>
|
||||
<!-- Text announced by accessibility when the popup containing the list of widgets is closed. [CHAR_LIMIT=100] -->
|
||||
<string name="widgets_list_closed">Widgets list closed</string>
|
||||
|
||||
<!-- Strings for accessibility actions -->
|
||||
<!-- Accessibility action to add an app to workspace. [CHAR_LIMIT=30] -->
|
||||
<string name="action_add_to_workspace">Add to Home screen</string>
|
||||
|
|
|
@ -16,10 +16,18 @@
|
|||
|
||||
package com.android.launcher3;
|
||||
|
||||
import static android.view.accessibility.AccessibilityEvent.TYPE_VIEW_FOCUSED;
|
||||
import static android.view.accessibility.AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED;
|
||||
import static android.view.accessibility.AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
|
||||
|
||||
import static com.android.launcher3.compat.AccessibilityManagerCompat.isAccessibilityEnabled;
|
||||
import static com.android.launcher3.compat.AccessibilityManagerCompat.sendCustomAccessibilityEvent;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.content.Context;
|
||||
import android.support.annotation.IntDef;
|
||||
import android.util.AttributeSet;
|
||||
import android.util.Pair;
|
||||
import android.view.MotionEvent;
|
||||
import android.view.View;
|
||||
import android.widget.LinearLayout;
|
||||
|
@ -123,6 +131,25 @@ public abstract class AbstractFloatingView extends LinearLayout implements Touch
|
|||
return false;
|
||||
}
|
||||
|
||||
protected void announceAccessibilityChanges() {
|
||||
Pair<View, String> targetInfo = getAccessibilityTarget();
|
||||
if (targetInfo == null || !isAccessibilityEnabled(getContext())) {
|
||||
return;
|
||||
}
|
||||
sendCustomAccessibilityEvent(
|
||||
targetInfo.first, TYPE_WINDOW_STATE_CHANGED, targetInfo.second);
|
||||
|
||||
if (mIsOpen) {
|
||||
sendAccessibilityEvent(TYPE_VIEW_FOCUSED);
|
||||
}
|
||||
BaseDraggingActivity.fromContext(getContext()).getDragLayer()
|
||||
.sendAccessibilityEvent(TYPE_WINDOW_CONTENT_CHANGED);
|
||||
}
|
||||
|
||||
protected Pair<View, String> getAccessibilityTarget() {
|
||||
return null;
|
||||
}
|
||||
|
||||
protected static <T extends AbstractFloatingView> T getOpenView(
|
||||
BaseDraggingActivity activity, @FloatingViewType int type) {
|
||||
BaseDragLayer dragLayer = activity.getDragLayer();
|
||||
|
|
|
@ -28,8 +28,6 @@ import android.content.Context;
|
|||
import android.content.res.Resources;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.MotionEvent;
|
||||
|
@ -126,18 +124,6 @@ public class DragLayer extends BaseDragLayer<Launcher> {
|
|||
return mDragController.dispatchKeyEvent(event) || super.dispatchKeyEvent(event);
|
||||
}
|
||||
|
||||
public boolean isEventOverHotseat(MotionEvent ev) {
|
||||
return isEventOverView(mActivity.getHotseat(), ev);
|
||||
}
|
||||
|
||||
private boolean isEventOverFolder(Folder folder, MotionEvent ev) {
|
||||
return isEventOverView(folder, ev);
|
||||
}
|
||||
|
||||
private boolean isEventOverDropTargetBar(MotionEvent ev) {
|
||||
return isEventOverView(mActivity.getDropTargetBar(), ev);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
|
||||
ViewScrim scrim = ViewScrim.get(child);
|
||||
|
@ -157,24 +143,29 @@ public class DragLayer extends BaseDragLayer<Launcher> {
|
|||
return super.findActiveController(ev);
|
||||
}
|
||||
|
||||
private boolean isEventOverAccessibleDropTargetBar(MotionEvent ev) {
|
||||
return isInAccessibleDrag() && isEventOverView(mActivity.getDropTargetBar(), ev);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onInterceptHoverEvent(MotionEvent ev) {
|
||||
if (mActivity == null || mActivity.getWorkspace() == null) {
|
||||
return false;
|
||||
}
|
||||
Folder currentFolder = Folder.getOpen(mActivity);
|
||||
if (currentFolder == null) {
|
||||
AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity);
|
||||
if (!(topView instanceof Folder)) {
|
||||
return false;
|
||||
} else {
|
||||
AccessibilityManager accessibilityManager = (AccessibilityManager)
|
||||
getContext().getSystemService(Context.ACCESSIBILITY_SERVICE);
|
||||
if (accessibilityManager.isTouchExplorationEnabled()) {
|
||||
Folder currentFolder = (Folder) topView;
|
||||
final int action = ev.getAction();
|
||||
boolean isOverFolderOrSearchBar;
|
||||
switch (action) {
|
||||
case MotionEvent.ACTION_HOVER_ENTER:
|
||||
isOverFolderOrSearchBar = isEventOverFolder(currentFolder, ev) ||
|
||||
(isInAccessibleDrag() && isEventOverDropTargetBar(ev));
|
||||
isOverFolderOrSearchBar = isEventOverView(topView, ev) ||
|
||||
isEventOverAccessibleDropTargetBar(ev);
|
||||
if (!isOverFolderOrSearchBar) {
|
||||
sendTapOutsideFolderAccessibilityEvent(currentFolder.isEditingName());
|
||||
mHoverPointClosesFolder = true;
|
||||
|
@ -183,8 +174,8 @@ public class DragLayer extends BaseDragLayer<Launcher> {
|
|||
mHoverPointClosesFolder = false;
|
||||
break;
|
||||
case MotionEvent.ACTION_HOVER_MOVE:
|
||||
isOverFolderOrSearchBar = isEventOverFolder(currentFolder, ev) ||
|
||||
(isInAccessibleDrag() && isEventOverDropTargetBar(ev));
|
||||
isOverFolderOrSearchBar = isEventOverView(topView, ev) ||
|
||||
isEventOverAccessibleDropTargetBar(ev);
|
||||
if (!isOverFolderOrSearchBar && !mHoverPointClosesFolder) {
|
||||
sendTapOutsideFolderAccessibilityEvent(currentFolder.isEditingName());
|
||||
mHoverPointClosesFolder = true;
|
||||
|
@ -219,18 +210,8 @@ public class DragLayer extends BaseDragLayer<Launcher> {
|
|||
|
||||
@Override
|
||||
public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) {
|
||||
// Shortcuts can appear above folder
|
||||
View topView = AbstractFloatingView.getTopOpenView(mActivity);
|
||||
if (topView != null) {
|
||||
if (child == topView) {
|
||||
return super.onRequestSendAccessibilityEvent(child, event);
|
||||
}
|
||||
if (isInAccessibleDrag() && child instanceof DropTargetBar) {
|
||||
return super.onRequestSendAccessibilityEvent(child, event);
|
||||
}
|
||||
// Skip propagating onRequestSendAccessibilityEvent for all other children
|
||||
// which are not topView
|
||||
return false;
|
||||
if (isInAccessibleDrag() && child instanceof DropTargetBar) {
|
||||
return true;
|
||||
}
|
||||
return super.onRequestSendAccessibilityEvent(child, event);
|
||||
}
|
||||
|
@ -239,11 +220,9 @@ public class DragLayer extends BaseDragLayer<Launcher> {
|
|||
public void addChildrenForAccessibility(ArrayList<View> childrenForAccessibility) {
|
||||
View topView = AbstractFloatingView.getTopOpenView(mActivity);
|
||||
if (topView != null) {
|
||||
// Only add the top view as a child for accessibility when it is open
|
||||
childrenForAccessibility.add(topView);
|
||||
|
||||
addAccessibleChildToList(topView, childrenForAccessibility);
|
||||
if (isInAccessibleDrag()) {
|
||||
childrenForAccessibility.add(mActivity.getDropTargetBar());
|
||||
addAccessibleChildToList(mActivity.getDropTargetBar(), childrenForAccessibility);
|
||||
}
|
||||
} else {
|
||||
super.addChildrenForAccessibility(childrenForAccessibility);
|
||||
|
|
|
@ -31,6 +31,7 @@ import android.text.InputType;
|
|||
import android.text.Selection;
|
||||
import android.util.AttributeSet;
|
||||
import android.util.Log;
|
||||
import android.util.Pair;
|
||||
import android.view.ActionMode;
|
||||
import android.view.FocusFinder;
|
||||
import android.view.KeyEvent;
|
||||
|
@ -516,15 +517,11 @@ public class Folder extends AbstractFloatingView implements DragSource,
|
|||
public void onAnimationStart(Animator animation) {
|
||||
mFolderIcon.setBackgroundVisible(false);
|
||||
mFolderIcon.drawLeaveBehindIfExists();
|
||||
|
||||
sendCustomAccessibilityEvent(
|
||||
Folder.this,
|
||||
AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED,
|
||||
mContent.getAccessibilityDescription());
|
||||
}
|
||||
@Override
|
||||
public void onAnimationEnd(Animator animation) {
|
||||
mState = STATE_OPEN;
|
||||
announceAccessibilityChanges();
|
||||
|
||||
mLauncher.getUserEventDispatcher().resetElapsedContainerMillis("folder opened");
|
||||
mContent.setFocusOnFirstChild();
|
||||
|
@ -574,11 +571,6 @@ public class Folder extends AbstractFloatingView implements DragSource,
|
|||
}
|
||||
|
||||
mContent.verifyVisibleHighResIcons(mContent.getNextPage());
|
||||
|
||||
// Notify the accessibility manager that this folder "window" has appeared and occluded
|
||||
// the workspace items
|
||||
sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
|
||||
dragLayer.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
|
||||
}
|
||||
|
||||
public void beginExternalDrag() {
|
||||
|
@ -612,6 +604,7 @@ public class Folder extends AbstractFloatingView implements DragSource,
|
|||
animateClosed();
|
||||
} else {
|
||||
closeComplete(false);
|
||||
post(this::announceAccessibilityChanges);
|
||||
}
|
||||
|
||||
// Notify the accessibility manager that this folder "window" has disappeared and no
|
||||
|
@ -626,18 +619,18 @@ public class Folder extends AbstractFloatingView implements DragSource,
|
|||
@Override
|
||||
public void onAnimationEnd(Animator animation) {
|
||||
closeComplete(true);
|
||||
}
|
||||
@Override
|
||||
public void onAnimationStart(Animator animation) {
|
||||
sendCustomAccessibilityEvent(
|
||||
Folder.this,
|
||||
AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED,
|
||||
getContext().getString(R.string.folder_closed));
|
||||
announceAccessibilityChanges();
|
||||
}
|
||||
});
|
||||
startAnimation(a);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Pair<View, String> getAccessibilityTarget() {
|
||||
return Pair.create(mContent, mIsOpen ? mContent.getAccessibilityDescription()
|
||||
: getContext().getString(R.string.folder_closed));
|
||||
}
|
||||
|
||||
private void closeComplete(boolean wasAnimated) {
|
||||
// TODO: Clear all active animations.
|
||||
DragLayer parent = (DragLayer) getParent();
|
||||
|
|
|
@ -367,6 +367,7 @@ public abstract class ArrowPopup extends AbstractFloatingView {
|
|||
openAnim.addListener(new AnimatorListenerAdapter() {
|
||||
@Override
|
||||
public void onAnimationEnd(Animator animation) {
|
||||
announceAccessibilityChanges();
|
||||
mOpenCloseAnimator = null;
|
||||
}
|
||||
});
|
||||
|
|
|
@ -34,6 +34,7 @@ import android.os.Build;
|
|||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
import android.util.AttributeSet;
|
||||
import android.util.Pair;
|
||||
import android.view.MotionEvent;
|
||||
import android.view.View;
|
||||
import android.view.ViewConfiguration;
|
||||
|
@ -263,9 +264,7 @@ public class PopupContainerWithArrow extends ArrowPopup implements DragSource,
|
|||
|
||||
ItemInfo originalItemInfo = (ItemInfo) originalIcon.getTag();
|
||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
|
||||
setAccessibilityPaneTitle(getContext().getString(mNumNotifications == 0 ?
|
||||
R.string.action_deep_shortcut :
|
||||
R.string.shortcuts_menu_with_notifications_description));
|
||||
setAccessibilityPaneTitle(getTitleForAccessibility());
|
||||
}
|
||||
|
||||
mLauncher.getDragController().addDragListener(this);
|
||||
|
@ -281,6 +280,17 @@ public class PopupContainerWithArrow extends ArrowPopup implements DragSource,
|
|||
this, shortcutIds, mShortcuts, notificationKeys));
|
||||
}
|
||||
|
||||
private String getTitleForAccessibility() {
|
||||
return getContext().getString(mNumNotifications == 0 ?
|
||||
R.string.action_deep_shortcut :
|
||||
R.string.shortcuts_menu_with_notifications_description);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Pair<View, String> getAccessibilityTarget() {
|
||||
return Pair.create(this, "");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void getTargetObjectLocation(Rect outPos) {
|
||||
mLauncher.getDragLayer().getDescendantRectRelativeToSelf(mOriginalIcon, outPos);
|
||||
|
|
|
@ -81,6 +81,7 @@ public abstract class AbstractSlideInView extends AbstractFloatingView
|
|||
@Override
|
||||
public void onAnimationEnd(Animator animation) {
|
||||
mSwipeDetector.finishedScrolling();
|
||||
announceAccessibilityChanges();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -117,12 +117,20 @@ public abstract class BaseDragLayer<T extends BaseDraggingActivity> extends Inse
|
|||
View topView = AbstractFloatingView.getTopOpenView(mActivity);
|
||||
if (topView != null) {
|
||||
// Only add the top view as a child for accessibility when it is open
|
||||
childrenForAccessibility.add(topView);
|
||||
addAccessibleChildToList(topView, childrenForAccessibility);
|
||||
} else {
|
||||
super.addChildrenForAccessibility(childrenForAccessibility);
|
||||
}
|
||||
}
|
||||
|
||||
protected void addAccessibleChildToList(View child, ArrayList<View> outList) {
|
||||
if (child.isImportantForAccessibility()) {
|
||||
outList.add(child);
|
||||
} else {
|
||||
child.addChildrenForAccessibility(outList);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onViewRemoved(View child) {
|
||||
super.onViewRemoved(child);
|
||||
|
|
|
@ -20,6 +20,7 @@ import android.animation.PropertyValuesHolder;
|
|||
import android.content.Context;
|
||||
import android.graphics.Rect;
|
||||
import android.util.AttributeSet;
|
||||
import android.util.Pair;
|
||||
import android.view.Gravity;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
|
@ -72,7 +73,7 @@ public class WidgetsBottomSheet extends BaseWidgetSheet implements Insettable {
|
|||
|
||||
mLauncher.getDragLayer().addView(this);
|
||||
mIsOpen = false;
|
||||
open(true);
|
||||
animateOpen();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -129,20 +130,16 @@ public class WidgetsBottomSheet extends BaseWidgetSheet implements Insettable {
|
|||
return widget;
|
||||
}
|
||||
|
||||
private void open(boolean animate) {
|
||||
private void animateOpen() {
|
||||
if (mIsOpen || mOpenCloseAnimator.isRunning()) {
|
||||
return;
|
||||
}
|
||||
mIsOpen = true;
|
||||
setupNavBarColor();
|
||||
if (animate) {
|
||||
mOpenCloseAnimator.setValues(
|
||||
PropertyValuesHolder.ofFloat(TRANSLATION_SHIFT, TRANSLATION_SHIFT_OPENED));
|
||||
mOpenCloseAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
|
||||
mOpenCloseAnimator.start();
|
||||
} else {
|
||||
setTranslationShift(TRANSLATION_SHIFT_OPENED);
|
||||
}
|
||||
mOpenCloseAnimator.setValues(
|
||||
PropertyValuesHolder.ofFloat(TRANSLATION_SHIFT, TRANSLATION_SHIFT_OPENED));
|
||||
mOpenCloseAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
|
||||
mOpenCloseAnimator.start();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -170,4 +167,10 @@ public class WidgetsBottomSheet extends BaseWidgetSheet implements Insettable {
|
|||
protected int getElementsRowCount() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Pair<View, String> getAccessibilityTarget() {
|
||||
return Pair.create(findViewById(R.id.title), getContext().getString(
|
||||
mIsOpen ? R.string.widgets_list : R.string.widgets_list_closed));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,8 +21,10 @@ import android.animation.PropertyValuesHolder;
|
|||
import android.content.Context;
|
||||
import android.graphics.Rect;
|
||||
import android.util.AttributeSet;
|
||||
import android.util.Pair;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.MotionEvent;
|
||||
import android.view.View;
|
||||
import android.view.animation.AnimationUtils;
|
||||
|
||||
import com.android.launcher3.Insettable;
|
||||
|
@ -55,6 +57,7 @@ public class WidgetsFullSheet extends BaseWidgetSheet
|
|||
mAdapter = new WidgetsListAdapter(context,
|
||||
LayoutInflater.from(context), apps.getWidgetCache(), apps.getIconCache(),
|
||||
this, this);
|
||||
|
||||
}
|
||||
|
||||
public WidgetsFullSheet(Context context, AttributeSet attrs) {
|
||||
|
@ -76,6 +79,12 @@ public class WidgetsFullSheet extends BaseWidgetSheet
|
|||
onWidgetsBound();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Pair<View, String> getAccessibilityTarget() {
|
||||
return Pair.create(mRecyclerView, getContext().getString(
|
||||
mIsOpen ? R.string.widgets_list : R.string.widgets_list_closed));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onAttachedToWindow() {
|
||||
super.onAttachedToWindow();
|
||||
|
@ -149,10 +158,6 @@ public class WidgetsFullSheet extends BaseWidgetSheet
|
|||
}
|
||||
|
||||
private void open(boolean animate) {
|
||||
if (mIsOpen) {
|
||||
return;
|
||||
}
|
||||
mIsOpen = true;
|
||||
if (animate) {
|
||||
if (mLauncher.getDragLayer().getInsets().bottom > 0) {
|
||||
mContent.setAlpha(0);
|
||||
|
@ -180,6 +185,7 @@ public class WidgetsFullSheet extends BaseWidgetSheet
|
|||
} else {
|
||||
setTranslationShift(TRANSLATION_SHIFT_OPENED);
|
||||
mAdapter.setApplyBitmapDeferred(false, mRecyclerView);
|
||||
post(this::announceAccessibilityChanges);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -212,6 +218,7 @@ public class WidgetsFullSheet extends BaseWidgetSheet
|
|||
public static WidgetsFullSheet show(Launcher launcher, boolean animate) {
|
||||
WidgetsFullSheet sheet = (WidgetsFullSheet) launcher.getLayoutInflater()
|
||||
.inflate(R.layout.widgets_full_sheet, launcher.getDragLayer(), false);
|
||||
sheet.mIsOpen = true;
|
||||
launcher.getDragLayer().addView(sheet);
|
||||
sheet.open(animate);
|
||||
return sheet;
|
||||
|
|
|
@ -29,7 +29,8 @@ public class WidgetsRowViewHolder extends ViewHolder {
|
|||
public WidgetsRowViewHolder(ViewGroup v) {
|
||||
super(v);
|
||||
|
||||
cellContainer = (ViewGroup) v.findViewById(R.id.widgets_cell_list);
|
||||
title = (BubbleTextView) v.findViewById(R.id.section);
|
||||
cellContainer = v.findViewById(R.id.widgets_cell_list);
|
||||
title = v.findViewById(R.id.section);
|
||||
title.setAccessibilityDelegate(null);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ public class AllAppsSwipeController extends AbstractStateChangeTouchController {
|
|||
|
||||
@Override
|
||||
protected int getLogContainerTypeForNormalState() {
|
||||
return mLauncher.getDragLayer().isEventOverHotseat(mTouchDownEvent) ?
|
||||
return mLauncher.getDragLayer().isEventOverView(mLauncher.getHotseat(), mTouchDownEvent) ?
|
||||
ContainerType.HOTSEAT : ContainerType.WORKSPACE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue