мой 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
во время работы моего приложения?