1
I am doing same as this link如何使用對象動畫旋轉從其中心位置的ImageView
這是工作不錯,但我想搬到其他圖像以及當圖像是移動 這樣
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="86dp"
android:src="@drawable/top_pati" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageView1"
android:layout_below="@+id/imageView1"
android:src="@drawable/top_pativertical" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/imageView1"
android:layout_below="@+id/imageView1"
android:src="@drawable/top_pativertical" />
什麼問題,在他們三個中應用相同的動畫? – Techfist
我設置我的佈局圖像是android:layout_alignRight =「@ + id/imageView1」 和android:layout_below =「@ + id/imageView1」 當它動畫時,爲什麼我的圖像佈局imageView2和imageView3不遵循imageView1 ... ???? – user3106818
將您的動畫代碼放在這裏。 – Techfist