AlphaAnimation对象不会更改动画视图的alpha属性,为什么?

时间:2015-02-07 21:20:36

标签: android android-animation

我试图为按钮的alpha设置动画效果,当我将alpha从1设置为0时效果很好。但是,在动画的最后,我无法将其从0重置为1因为按钮的alpha已经是1(这会导致按钮只是"跳转"在屏幕上没有任何淡入淡出)。似乎Animation对象不是直接设置视图alpha,而是视图的某些表示属性。有没有人知道如何让这个动画正常工作?

我的代码:

private void performFavoriteButtonFade(boolean isFavorite) {
    AlphaAnimation fadeAnimation = new AlphaAnimation(0, 0);
    if (isFavorite) {
        if (this.favoriteButton.getAlpha() == 1) {
            fadeAnimation = new AlphaAnimation(1, 0);
        }
    } else {
        if (this.favoriteButton.getAlpha() == 0) {
            fadeAnimation = new AlphaAnimation(0, 1);
        } else {
            fadeAnimation = new AlphaAnimation(1, 1);
        }
    }

    fadeAnimation.setDuration(300);
    fadeAnimation.setFillAfter(true);

    this.favoriteButton.startAnimation(fadeAnimation);
    this.favoriteButton.setVisibility(View.VISIBLE);
}
<ImageButton
        android:id="@+id/favoriteButton"
        android:src="@drawable/favorite_icon"
        android:background="@android:color/transparent"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="30dp"
        android:layout_marginBottom="20dp"
        android:visibility="invisible"
        android:onClick="didTapNotFavorite"
        />

注意:

我设置了视图可见性,因为answer in this post使AlphaAnimation正常工作。

2 个答案:

答案 0 :(得分:4)

您似乎在使用旧式动画。您可以使用新样式,它应该可以在不改变可见性或填充之后工作。不要在XML中设置可见性,只需将alpha设置为0。

淡出:

Button button = new Button(mActivity);
button.animate().alpha(0).setDuration(300).start();

淡入:

Button button = new Button(mActivity);
button.animate().alpha(1f).setDuration(300).start();

答案 1 :(得分:0)

试试这个:

AlphaAnimation fadeAnimation;
        if (isFavorite) {
            if (this.favoriteButton.getAlpha() == 1) {
                fadeAnimation = new AlphaAnimation(1, 0);
                fadeAnimation.setInterpolator(new AccelerateInterpolator());
            }
        } else {
            if (this.favoriteButton.getAlpha() == 0) {
                fadeAnimation = new AlphaAnimation(0, 1);
                fadeAnimation.setInterpolator(new DecelerateInterpolator());
            } else {
                fadeAnimation = new AlphaAnimation(1, 1);
            }
        }