如何将ImageView移动到另一个ImageView Android动画

问题描述 投票:0回答:3
android android-studio animation android-imageview
3个回答
3
投票

您可以像这样以编程方式执行此操作:

@Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    final View target = findViewById(R.id.target);
    final View viewToMove = findViewById(R.id.viewToMove);

    viewToMove.setOnClickListener(new View.OnClickListener() {
        @Override public void onClick(View v) {
            translate(viewToMove, target);
        }
    });
}

private void translate(View viewToMove, View target) {
    viewToMove.animate()
            .x(target.getX())
            .y(target.getY())
            .setDuration(1000)
            .start();
}

这里是 XML :

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:id="@+id/activity_main"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:id="@+id/target"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:layout_gravity="center"
    android:background="@color/colorAccent"/>

<ImageView
    android:id="@+id/viewToMove"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:background="@color/colorPrimary"
    android:src="@mipmap/ic_launcher"/>
</FrameLayout>

0
投票

最终我在用户 Francois L 的帮助下成功了。

有很多工作要做,我不会说不,因为我需要重新设计我的所有布局,但这不是问题,因为我学到了新的东西,我很感激我能得到的所有帮助。

如果有人想将一个视图(任何类型的视图,图像视图,按钮视图,文本视图等)移动到另一个视图,则两个视图必须处于相同的布局,这是最重要的部分。

实现这一点的代码是:

//here is the part of initialization
    ImageView poz1Inamic = (ImageView) findViewById(inamic_pozitia1);
    ImageView poz1InamicSpateCarte = (ImageView) findViewById(inamic_pozitia1spatecarte);

    //other code
    poz1InamicSpateCarte.setVisibility(View.INVISIBLE);

    //here is the initialization of the arrive position
    ImageView cartePusaInamic = (ImageView) findViewById(R.id.cartePusaInamic);

    //the code for moving from start position to arrive position
    poz1Inamic.animate()
            .x(cartePusaInamic.getX())
            .y(cartePusaInamic.getY())
            .setDuration(333)
            .start();

0
投票
private fun moveImageToSpots() {

                ObjectAnimator.ofFloat(cardToMove, "translationX", cardToMove.x,targetCard.y.toFloat()).apply {
                    duration = 500
                    start()
                }
                ObjectAnimator.ofFloat(cardToMove, "translationY", cardToMove.y, targetCard.y.toFloat()).apply {
                    duration = 500
                    start()
                }

}
© www.soinside.com 2019 - 2024. All rights reserved.