我的main.xml看起来像这样:
<AbsoluteLayout
android:id="@+id/AbsoluteLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:layout_height="wrap_content"
android:layout_x="247dip"
android:layout_width="wrap_content"
android:layout_y="96dip"
android:id="@+id/Ball"
android:src="@drawable/ball"/>
</AbsoluteLayout>
和Java
ball = (ImageView) findViewById(R.id.Ball);
如果我在应用程序运行时将球从x=247dip, y=96dip
移到x=100, y=100
,该怎么办?
答案 0 :(得分:-1)
首先将Image的布局高度和宽度设置为Fillparent,然后使用下面的代码
public void onWindowFocusChanged(boolean hasFocus) {
ball.scrollTo(10, 20);
}
答案 1 :(得分:-2)
ball.setLeft(10); //this moves view 10 pixel to left
ball.setLeft(-10); //this moves view 10 pixel to right
ball.setRight(10);//this moves view 10 pixel to right