我正在对按钮执行淡入淡出效果。
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)
按钮可见的选项。这很好用。现在我想再次执行动画,但不能再将我的按钮设置为在屏幕上不可见,除非我重新启动应用程序。(也试过 invalidate() 没有成功......)
任何想法都会“如此”受欢迎。
提前致谢!保罗