1

嗨,我有一个图像视图位置和我想要动画的页面底部,所以它向下移动有人知道该怎么做吗?目前当我运行它时没有任何反应

这是我迄今为止尝试过的

这是我的动画

<set xmlns:android="http://schemas.android.com/apk/res/android" 
    android:interpolator="@android:anim/accelerate_interpolator">
   <translate android:fromYDelta="0" android:toXDelta="30" android:duration="1000"
       android:fillAfter="true"/>

</set>

这是我的java

public class IntialSetup extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.layout_initialsetup);
        animations();

    }


    public void animations(){

    final ImageView image = (ImageView)findViewById(R.id.su_shirts);
    Animation AnimationMovepos = AnimationUtils.loadAnimation(this, R.anim.shirt_anim); 
    image.startAnimation(AnimationMovepos); 

    }



}
4

1 回答 1

2

看看你的动画:

<translate android:fromYDelta="0" android:toXDelta="30" .../>

fromYDelta ... toYDelta 而不是 toXDelta。

希望这是问题所在。

于 2012-07-11T12:36:58.297 回答