小编bos*_*kov的帖子

移动ImageView:ScrollBy()和ScrollTo()

我想以编程方式移动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>
Run Code Online (Sandbox Code Playgroud)

活动代码:

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

image.scrollTo (10,10);

/* Creating animation... */

mAnim = (AnimationDrawable) image.getBackground();
/* etc. */
Run Code Online (Sandbox Code Playgroud)

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

android move imageview

3
推荐指数
1
解决办法
3030
查看次数

标签 统计

android ×1

imageview ×1

move ×1