单击按钮上的“购物车”图标动画

时间:2015-08-08 08:06:45

标签: android android-animation

点击“添加项目”时,我试图在操作栏上为我的购物车图标设置动画。作为动画,我想稍微放大Cart图标,然后缩小回原始大小。我该怎么办?

2 个答案:

答案 0 :(得分:5)

你可以试试这个:

 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);

答案 1 :(得分:1)

你可以在这里查看它几乎与你需要的相似

Check link here

enter image description here