1

Androidでアニメーション効果を作成する方法を教えてください。TextViewName 、 Age 、 Sex を画面上の特定の位置に左から移動させたいと思います。例:TextViewが画面の左端から移動する場合のように、これらのフィールドは線形レイアウト上に垂直に配置されます。

4

1 に答える 1

0

res /anim/にltor.xmlという名前の新しいxmlを作成します。

<set xmlns:android="http://schemas.android.com/apk/res/android"
         android:shareInterpolator="false">
        <translate android:fromXDelta="-100%" android:toXDelta="0%"
          android:fromYDelta="0%" android:toYDelta="0%"
         android:duration="700"/>
       </set>

アニメーション化するビューに次の属性を指定します。

android:animation="@anim/ltor"

于 2012-07-17T11:31:17.620 に答える