2013-12-16 69 views
1

I am doing same as this link如何使用對象動畫旋轉從其中心位置的ImageView

這是工作不錯,但我想搬到其他圖像以及當圖像是移動 這樣

i want to move left side image attach with above image

<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" /> 
+0

什麼問題,在他們三個中應用相同的動畫? – Techfist

+1

我設置我的佈局圖像是android:layout_alignRight =「@ + id/imageView1」 和android:layout_below =「@ + id/imageView1」 當它動畫時,爲什麼我的圖像佈局imageView2和imageView3不遵循imageView1 ... ???? – user3106818

+0

將您的動畫代碼放在這裏。 – Techfist

回答

0

試試這個物品動畫代碼:

ObjectAnimator anim = ObjectAnimator.ofFloat(tvBorder, View.ROTATION, 60); 
anim.setRepeatMode(ValueAnimator.REVERSE); 
anim.start(); 
相關問題