我的main.xml這個樣子的:如何移動的的ImageView在AbsoluteLayout到XY位置
<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);
我該怎麼做,如果我whant移動從球x=247dip, y=96dip
到x=100, y=100
而我的應用程序正在運行?
不起作用 – 2010-09-10 18:23:55