change animation duration

This commit is contained in:
sk 2022-12-28 01:39:06 +01:00
parent 8a6d86727c
commit d9ed6f600b
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public class FooterStatusDisplayItem extends StatusDisplayItem{
opacityOut.setInterpolator(CubicBezierInterpolator.DEFAULT); opacityOut.setInterpolator(CubicBezierInterpolator.DEFAULT);
opacityOut.setFillAfter(true); opacityOut.setFillAfter(true);
opacityIn = new AlphaAnimation(0.55f, 1); opacityIn = new AlphaAnimation(0.55f, 1);
opacityIn.setDuration(500); opacityIn.setDuration(400);
opacityIn.setInterpolator(CubicBezierInterpolator.DEFAULT); opacityIn.setInterpolator(CubicBezierInterpolator.DEFAULT);
} }