jet*_*tty 1 android android-animation
我正在尝试在单击"添加项目"时在操作栏上为我的"购物车"图标设置动画.作为动画,我想稍微放大Cart图标,然后缩小回原始大小.我该怎么做?
你可以试试这个:
ScaleAnimation scale = new ScaleAnimation(0, 1, 0, 1, ScaleAnimation.RELATIVE_TO_SELF, .5f, ScaleAnimation.RELATIVE_TO_SELF, .5f);
scale.setDuration(500);
scale.setInterpolator(new OvershootInterpolator());
yourCartIcon.startAnimation(scale);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1521 次 |
| 最近记录: |