メニューにアニメーションを付けたいのですが、表示時にサイズが大きく、表示サイズが少し小さくなった後、どのように移動するか
質問する
42 次
1 に答える
0
set 内で scale プロパティを使用する必要があります。このようなもの:
<set xmlns:android="schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator">
<scale android:fromXScale="2.0" android:fromYScale="2.0"
android:toXScale="1.0" android:toYScale="1.0"
android:duration="700" />
</set>
于 2013-03-23T12:56:10.270 に答える