1

我想放大一个栏,它应该显示投票结果。为此,我使用简单的彩色视图,放置在 RelativeLayout 中。

<View
    android:id="@+id/q1"
    android:layout_width="81dp"
    android:layout_height="325dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_marginBottom="189dp"
    android:layout_marginLeft="129dp"
    android:background="@color/cdu" />

应该为栏设置动画的代码是:

ScaleAnimation anim = new ScaleAnimation(1f, 1f, 0f, -1f, -1f, 1f);
anim.setDuration(2000);
anim.setFillEnabled(true);
anim.setFillAfter(true);
v.startAnimation(anim);

动画到目前为止有效,但方向错误,它是从上到下增长的。我已经为这个简单的事情玩了很多小时的选项和 STFW。没有成功。

感谢所有提示和提议以解决金钱问题。丹尼尔

4

0 回答 0