25

我有几个ImageViews RelativeLayout。现在,当用户点击任何 ImageView 时,我希望它通过微妙的动画移动到指定位置。

例如; 我最初设置了与asLayoutParams关联的边距,然后将其添加到布局中。ImageViewlayoutparams1.setMargins(90,70,0,0);

当点击 imageview 时,我希望它的新位置是200,200,带有动画。

那么,有可能吗?如果是,那么如何?

请注意,我以编程方式创建RelativeLayout了它的所有子代。ImageView

而且我是android开发的新手,所以需要一个详尽的答案。

4

5 回答 5

56
TranslateAnimation animation = new TranslateAnimation(0, 50, 0, 100);
animation.setDuration(1000);
animation.setFillAfter(false);
animation.setAnimationListener(new MyAnimationListener());

imageView.startAnimation(animation);

更新: 问题是它View实际上仍然处于旧位置。所以我们必须在动画完成时移动它。要检测动画何时完成,我们必须创建自己的animationListener(在我们的activity类中):

private class MyAnimationListener implements AnimationListener{

    @Override
    public void onAnimationEnd(Animation animation) {
        imageView.clearAnimation();
        LayoutParams lp = new LayoutParams(imageView.getWidth(), imageView.getHeight());
        lp.setMargins(50, 100, 0, 0);
        imageView.setLayoutParams(lp);
    }

    @Override
    public void onAnimationRepeat(Animation animation) {
    }

    @Override
    public void onAnimationStart(Animation animation) {
    }

}

所以onClickEvent会在它的新地方再次被解雇。动画现在会将它向下移动,因此您可能希望将xand保存y在一个变量中,这样onAnimationEnd()您就不会将其移动到固定位置。

于 2012-06-21T18:33:49.120 回答
10

也更好用ObjectAnimator。此移动视图处于新位置。例如 :

ImageView splash ;
@Override
public boolean onTouchEvent(MotionEvent event) {
    float tx = event.getX();
    float ty = event.getY();

    int action = event.getAction();
    switch(action) {
        case MotionEvent.ACTION_DOWN:
            tx = event.getX();
            ty = event.getY();

            //       findViewById(R.id.character).setX(tx-45);
            //      findViewById(R.id.character).setY(ty-134);

            ObjectAnimator animX = ObjectAnimator.ofFloat(splash, "x", tx-45);
            ObjectAnimator animY = ObjectAnimator.ofFloat(splash, "y", ty-134);
            AnimatorSet animSetXY = new AnimatorSet();
            animSetXY.playTogether(animX, animY);
            animSetXY.start();

            break;
        default:
    }
    return true;
}
于 2015-08-04T06:00:45.190 回答
4

你可以使用这个代码

imageView.animate().x(80).y(212).setDuration(300);

或者

对于软动画,你可以使用这个库

https://github.com/wirecube/android_additive_animations

于 2020-08-12T05:55:23.317 回答
2

在下面的代码中,我在框架布局的中心动态添加了一个图像视图。添加后,我增加缩放并设置 alpha 以提供缩放效果,完成动画后,我只是将图像视图的一个位置转换到另一个位置。

在框架布局上添加图像视图

    imgHeart = new ImageView(getBaseContext());
    imgHeart.setId(R.id.heartImage);
    imgHeart.setImageResource(R.drawable.material_heart_fill_icon);
    imgHeart.setLayoutParams(new FrameLayout.LayoutParams(50, 50, Gravity.CENTER));
    mainFrameLaout.addView(imgHeart);

在图像视图上添加动画

       imgHeart.animate()
            .scaleXBy(6)
            .scaleYBy(6)
            .setDuration(700)
            .alpha(2)
            .setListener(new Animator.AnimatorListener() {
                @Override
                public void onAnimationStart(Animator animation) {

                }

                @Override
                public void onAnimationEnd(Animator animation) {
                    imgHeart.animate()
                            .scaleXBy(-6f).scaleYBy(-6f)
                            .alpha(.1f)
                            .translationX((heigthAndWidth[0] / 2) - minusWidth)
                            .translationY(-((heigthAndWidth[1] / 2) - minusHeight))
                            .setDuration(1000)
                            .setListener(new Animator.AnimatorListener() {
                                @Override
                                public void onAnimationStart(Animator animation) {
                                }

                                @Override
                                public void onAnimationEnd(Animator animation) {
                                // remove image view from framlayout
                                }
                                @Override
                                public void onAnimationCancel(Animator animation) {
                                }

                                @Override
                                public void onAnimationRepeat(Animator animation) {
                                }
                            }).start();
                }

                @Override
                public void onAnimationCancel(Animator animation) {

                }

                @Override
                public void onAnimationRepeat(Animator animation) {

                }
            }).start();
于 2015-09-18T06:43:57.120 回答
0

您可以使用此代码:)

 private void animeView(View imageView){

        Handler handler = new Handler();
        final int[] deltaX = {50};
        final int[] deltaRotation = {45};
        handler.postDelayed(new Runnable() {
             @Override
             public void run() {
                 imageView.animate().translationX(deltaX[0])
                                    .rotation(deltaRotation[0]).setDuration(1000) ;
                 deltaX[0] *=-1 ;
                 deltaRotation[0] *=-1 ;
                 handler.postDelayed(this , 1000);
             }
         },1000);

    }
于 2022-02-18T15:29:00.937 回答