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

jet*_*tty 1 android android-animation

我正在尝试在单击"添加项目"时在操作栏上为我的"购物车"图标设置动画.作为动画,我想稍微放大Cart图标,然后缩小回原始大小.我该怎么做?

Rus*_*tam 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);
Run Code Online (Sandbox Code Playgroud)