Merge "Always showContentVisibility(true) after switch/expand animations." into rvc-dev am: c74779746e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11932514

Change-Id: Ia5bcd978e952e9231558cc6e8376dbd7c8e59f28
This commit is contained in:
TreeHugger Robot
2020-06-20 00:07:22 +00:00
committed by Automerger Merge Worker
2 changed files with 8 additions and 0 deletions

View File

@@ -494,6 +494,11 @@ public class BubbleExpandedView extends LinearLayout {
+ " bubble=" + getBubbleKey()); + " bubble=" + getBubbleKey());
} }
final float alpha = visibility ? 1f : 0f; final float alpha = visibility ? 1f : 0f;
if (alpha == mActivityView.getAlpha()) {
return;
}
mPointerView.setAlpha(alpha); mPointerView.setAlpha(alpha);
if (mActivityView != null) { if (mActivityView != null) {
mActivityView.setAlpha(alpha); mActivityView.setAlpha(alpha);

View File

@@ -1901,6 +1901,8 @@ public class BubbleStackView extends FrameLayout
.withEndActions(() -> { .withEndActions(() -> {
if (mExpandedBubble != null if (mExpandedBubble != null
&& mExpandedBubble.getExpandedView() != null) { && mExpandedBubble.getExpandedView() != null) {
mExpandedBubble.getExpandedView()
.setContentVisibility(true);
mExpandedBubble.getExpandedView() mExpandedBubble.getExpandedView()
.setSurfaceZOrderedOnTop(false); .setSurfaceZOrderedOnTop(false);
} }
@@ -2045,6 +2047,7 @@ public class BubbleStackView extends FrameLayout
}) })
.withEndActions(() -> { .withEndActions(() -> {
if (mExpandedBubble != null && mExpandedBubble.getExpandedView() != null) { if (mExpandedBubble != null && mExpandedBubble.getExpandedView() != null) {
mExpandedBubble.getExpandedView().setContentVisibility(true);
mExpandedBubble.getExpandedView().setSurfaceZOrderedOnTop(false); mExpandedBubble.getExpandedView().setSurfaceZOrderedOnTop(false);
} }