gpt4 book ai didi

android - move ImageView : ScrollBy() and ScrollTo()

转载 作者:太空宇宙 更新时间:2023-11-03 13:03:00 27 4
gpt4 key购买 nike

我想以编程方式 move ImageView(更改其在 x 轴和 y 轴中的位置)。main.xml 中的代码:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<com.app.name.GameView
android:id="@+id/game"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</FrameLayout>

Activity 中的代码:

ImageView image = (ImageView) findViewById(R.id.image);
image.setBackgroundResource(R.anim.my_anim);

image.scrollTo (10,10);

/* Creating animation... */

mAnim = (AnimationDrawable) image.getBackground();
/* etc. */

命令 ScrollBy() 和 ScrollTo() 不起作用。可能不需要 move 图像,但是 mAnim?

最佳答案

您应该使用 ImageView.setX(float)ImageView.setY(float) 函数。

关于android - move ImageView : ScrollBy() and ScrollTo(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8301002/

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