AlphaAnimation淡出不起作用

时间:2016-10-18 00:22:00

标签: android android-animation

动画Alpha淡出无法正常工作。淡入,确定无误。 但淡出不是。怎么了?

我的淡入效果很好:

boolean done = true;
do {
    System.out.println("Enter a multiple of 3 between 3 and 24: ");
    n = input.nextInt();
    done = (3 <= n && n <= 24 && n % 3 == 0);
} while (!done);
System.out.println("You entered: " + n);

我的淡出没有任何反应:

Animation anin = new AlphaAnimation(0.0f, 1.0f);
anin.setDuration(1000);
anin.setFillAfter(true);
txtview.startAnimation(anin);

由于

0 个答案:

没有答案