gpt4 book ai didi

android - 如何以随机方向为android Imageview设置动画?

转载 作者:行者123 更新时间:2023-11-29 00:22:28 26 4
gpt4 key购买 nike

我想开发如下图的应用

enter image description here

我想将 ImageView 2、3、4、5、6 设置为 ImageView 1 的动画,反之亦然

谁能帮我解决这个问题

最佳答案

int distance = 100; //the distance to move in pixels
int duration = 500; //the duration of the animation in ms

double direction = Math.random() * 2 * Math.PI;

int translationX = Math.cos(direction) * distance;
int translationY = Math.sin(direction) * distance;

yourImageView.animate().translationX(translationX).translationY(translationY).setDuration(duration).start();

关于android - 如何以随机方向为android Imageview设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22194299/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com