投票結果を表示するバーを拡大したい。そのために、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で何時間も遊んできました。成功せずに。
お金のために問題を解決するためのすべてのヒントとオファーに感謝します. ダニエル