Fix reversed remote input reveal anims
Method names accidentally flipped when refactoring params to a separate
class.
Fixes: 225903907
Test: 1. Tap Reply action for messaging notification
2. Observe correct reveal animation
Change-Id: Icbd485ca37d734eaef7c32a5f317bdbe42c884f1
This commit is contained in:
@@ -903,11 +903,11 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
|
||||
this.radius = radius;
|
||||
}
|
||||
|
||||
Animator createCircularRevealAnimator(View view) {
|
||||
Animator createCircularHideAnimator(View view) {
|
||||
return ViewAnimationUtils.createCircularReveal(view, centerX, centerY, radius, 0);
|
||||
}
|
||||
|
||||
Animator createCircularHideAnimator(View view) {
|
||||
Animator createCircularRevealAnimator(View view) {
|
||||
return ViewAnimationUtils.createCircularReveal(view, centerX, centerY, 0, radius);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user