我正在嘗試創建一個類似於instagram雙擊動畫的動畫,其中心漸暗時從中心向上縮放,然後保持可見狀態,然後縮小到中心而淡出。Instagram的心動畫模仿 - FadeScale動畫
我用這個動畫:
public void animateHeart(final ImageView view) {
AnimationSet animation = new AnimationSet(true);
animation.addAnimation(new AlphaAnimation(0.0f, 1.0f));
animation.addAnimation(new ScaleAnimation(0.0f, 1.0f, 0.0f, 1.0f,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f));
animation.setDuration(700);
animation.setRepeatMode(Animation.REVERSE);
view.startAnimation(animation);
}
它非常適用出現動畫,但動畫不會逆轉。 另外,我希望它只動畫一次。
可能有人告訴我我做錯了什麼? 在此先感謝。
謝謝你的幫助 –