Merge "Fix reversed remote input reveal anims" into tm-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
74b0db30fc
@@ -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