Merge "Fixing a11y bubble issues" into rvc-dev am: 1913611414 am: 9c727165e7
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11886110 Change-Id: I048c0faff4e96dabdca58eb347c7bd4e5839d8e7
This commit is contained in:
@@ -100,6 +100,7 @@ public class BadgedImageView extends ImageView {
|
||||
mDotRenderer = new DotRenderer(mBubbleBitmapSize, iconPath, DEFAULT_PATH_SIZE);
|
||||
|
||||
setFocusable(true);
|
||||
setClickable(true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -67,6 +67,7 @@ import android.util.Log;
|
||||
import android.util.Pair;
|
||||
import android.util.SparseSetArray;
|
||||
import android.view.Display;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.view.WindowManager;
|
||||
|
||||
@@ -394,6 +395,7 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
|
||||
: statusBarService;
|
||||
|
||||
mBubbleScrim = new ScrimView(mContext);
|
||||
mBubbleScrim.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO);
|
||||
|
||||
mSavedBubbleKeysPerUser = new SparseSetArray<>();
|
||||
mCurrentUserId = mNotifUserManager.getCurrentUserId();
|
||||
|
||||
@@ -2515,6 +2515,10 @@ public class BubbleStackView extends FrameLayout
|
||||
.spring(DynamicAnimation.SCALE_Y, 1f)
|
||||
.spring(DynamicAnimation.TRANSLATION_X, targetX)
|
||||
.spring(DynamicAnimation.TRANSLATION_Y, targetY)
|
||||
.withEndActions(() -> {
|
||||
View child = mManageMenu.getChildAt(0);
|
||||
child.requestAccessibilityFocus();
|
||||
})
|
||||
.start();
|
||||
|
||||
mManageMenu.setVisibility(View.VISIBLE);
|
||||
|
||||
Reference in New Issue
Block a user