Double-pulse message highlights.

This commit is contained in:
Greyson Parrelli
2022-03-02 10:41:46 -05:00
committed by Alex Hart
parent 8a49534e2b
commit 4f3bb39e5c

View File

@@ -808,6 +808,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
private void startPulseOutlinerAnimation() {
pulseOutlinerAlphaAnimator = ValueAnimator.ofInt(0, 0x66, 0).setDuration(600);
pulseOutlinerAlphaAnimator.setRepeatCount(1);
pulseOutlinerAlphaAnimator.addUpdateListener(animator -> {
pulseOutliner.setAlpha((Integer) animator.getAnimatedValue());
bodyBubble.invalidate();