Merge branch 'feature/animate-buttons'
This commit is contained in:
@@ -61,11 +61,11 @@ public class FooterStatusDisplayItem extends StatusDisplayItem{
|
|||||||
};
|
};
|
||||||
|
|
||||||
static {
|
static {
|
||||||
opacityOut = new AlphaAnimation(1, 0.7f);
|
opacityOut = new AlphaAnimation(1, 0.55f);
|
||||||
opacityOut.setDuration(200);
|
opacityOut.setDuration(300);
|
||||||
opacityOut.setInterpolator(CubicBezierInterpolator.DEFAULT);
|
opacityOut.setInterpolator(CubicBezierInterpolator.DEFAULT);
|
||||||
opacityOut.setFillAfter(true);
|
opacityOut.setFillAfter(true);
|
||||||
opacityIn = new AlphaAnimation(0.7f, 1);
|
opacityIn = new AlphaAnimation(0.55f, 1);
|
||||||
opacityIn.setDuration(300);
|
opacityIn.setDuration(300);
|
||||||
opacityIn.setInterpolator(CubicBezierInterpolator.DEFAULT);
|
opacityIn.setInterpolator(CubicBezierInterpolator.DEFAULT);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user