为什么我的动画不会停留在to-x给定值?

时间:2012-12-03 19:41:28

标签: android animation view

我想在触摸时移动视图,当用户取消此视图时,会启动一个动画,将我的视图移动到其父视图的末尾。

这是我的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/time_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<AbsoluteLayout
    android:id="@+id/slide_layout"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_alignParentBottom="true"
    android:layout_margin="20dp"
    android:background="#0000FF" >

    <View
        android:id="@+id/slide_to_pause"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#00FFFF" />
</AbsoluteLayout>
</RelativeLayout>

这就是我将视图设置为在onCreate中移动的方式:

slideView = ((View) findViewById(R.id.slide_to_pause));
slideView.setOnTouchListener(this);

这是我移动视图并启动动画的方式:

@Override
public boolean onTouch(View view, MotionEvent event) {
    AbsoluteLayout.LayoutParams layoutParams = (AbsoluteLayout.LayoutParams) view.getLayoutParams();

    switch (event.getAction() & MotionEvent.ACTION_MASK) {

    case MotionEvent.ACTION_DOWN:
        mX = event.getRawX();
        break;

    case MotionEvent.ACTION_UP:
        int endOfAnimation = findViewById(R.id.slide_layout).getWidth() - view.getWidth();
        mSlideAnimation = new TranslateAnimation(0, endOfAnimation - layoutParams.x, 0, 0);
        mSlideAnimation.setDuration(1000);          
        view.startAnimation(mSlideAnimation);
        Log.d(TAG, "endOfAnimation = " + layoutParams.x + " | " + endOfAnimation);
        break;

    case MotionEvent.ACTION_MOVE:
        layoutParams.x = (int) event.getRawX();         
        view.setLayoutParams(layoutParams); 

        break;
    }
    return true;
}

问题在于,当视图到达最后时,它返回到屏幕中间的一个点,这是用户取消视图的点。 我怎样才能解决这个问题? 谢谢!

2 个答案:

答案 0 :(得分:3)

您需要使用

mSlideAnimation.setFillAfter(true);

使其不会恢复到开始状态。

如果这不起作用,您可能必须遵循Animation.setFillAfter/Before - Do they work/What are they for?

上的建议

答案 1 :(得分:1)

您可以使用

手动模拟动画(自己移动视图,不使用动画框架)
View.offsetLeftAndRight(int offset)
View.offsetTopAndBottom(int offset)