Merge "Fix possible NPE" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
c3260a4c39
@@ -1904,7 +1904,7 @@ public class BubbleStackView extends FrameLayout
|
|||||||
AnimatableScaleMatrix.getAnimatableValueForScaleFactor(1f),
|
AnimatableScaleMatrix.getAnimatableValueForScaleFactor(1f),
|
||||||
mScaleInSpringConfig)
|
mScaleInSpringConfig)
|
||||||
.addUpdateListener((target, values) -> {
|
.addUpdateListener((target, values) -> {
|
||||||
if (mExpandedBubble.getIconView() == null) {
|
if (mExpandedBubble == null || mExpandedBubble.getIconView() == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
mExpandedViewContainerMatrix.postTranslate(
|
mExpandedViewContainerMatrix.postTranslate(
|
||||||
|
|||||||
Reference in New Issue
Block a user