gpt4 book ai didi

android 如何在我的目的地点移动许多图像

转载 作者:行者123 更新时间:2023-11-30 03:59:02 25 4
gpt4 key购买 nike

如何用android源码实现我的想法

我有很多图像,我想一张一张地移动图像,如果图像移动到目标点,那么其他图像移动到前一个图像后面。

插图

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

image1,image2,image3 x (point destination move)

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

如果 image3 移动

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
image1,image2 image3 x

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

如果image2移动然后image3跟着移动image2

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
image1 image2,image3 x

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

等等

如何实现到源码android

我是新手

谢谢

最佳答案

对于移动的物体,在android中我们有一个叫做TranslateAnimation的概念。这是将我的对象从左向右移动的示例 fragment :

ll = new LinearLayout(this);
ll.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
ll.setOrientation(LinearLayout.VERTICAL);

tv = new TextView(this);
tv.setText("Animation");

moveLefttoRight = new TranslateAnimation(0, 200, 0, 0);
moveLefttoRight.setDuration(1000);
moveLefttoRight.setFillAfter(true);

button = new Button(this);
button.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
button.setText("PressMe");
button.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
tv.startAnimation(moveLefttoRight);
}

});

ll.addView(tv);
ll.addView(button);
setContentView(ll);

然后,您可以对三张图片应用相同的技巧..

希望这对你有帮助..

关于android 如何在我的目的地点移动许多图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12852311/

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