1

我想在触摸时移动一个视图,当用户松开这个视图时,它会启动一个动画,将我的视图移动到其父视图的末尾。

这是我的布局:

<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;
}

问题是当视图到达末尾时,它会回到屏幕中间的一个点,这是用户松开视图的点。我怎样才能解决这个问题?谢谢!

4

2 回答 2

3

你需要使用

mSlideAnimation.setFillAfter(true);

使其不会恢复到开始。

如果这不起作用,您可能必须遵循Animation.setFillAfter/Before 上的建议 - 它们是否有效/它们有什么用?

于 2012-12-03T20:06:39.903 回答
1

您可以使用手动模拟动画(自己移动视图,无需动画框架)

View.offsetLeftAndRight(int offset)
View.offsetTopAndBottom(int offset)
于 2012-12-03T20:00:14.897 回答