我在按鈕上執行淡入淡出效果。在android中重置動畫效果
AnimationSet set = new AnimationSet(true);
Animation animation2 = new AlphaAnimation((float) 0, 1);
animation2.setDuration(1500);
animation2.setRepeatMode(0);
set.addAnimation(animation2);
set.setFillAfter(true); // leaves the animation in its final status
btn.startAnimation(set);
我正在使用setFillAfter(true)
選項使按鈕可見。這工作正常。現在我想再次執行動畫,,但不能再次設置我的按鈕在屏幕上不可見,除非我重新啓動應用程序。 (alos嘗試無效(),但沒有成功......)
任何想法都將「如此」受到歡迎。
在此先感謝! 保羅
你嘗試'clearAnimation()'你再申請之前? – iTurki 2012-08-07 23:49:37