2012-10-27 76 views
1

我有一個使用android:layout_centerHorizontal="true"android:layout_centerVertical="true"的RelativeLayout中心的ImageView。在RelativeLayout中動畫ImageView

我可以動畫(移動)它讓我們說右下角,使用XML和/或代碼?我想指定動畫的持續時間以及可能的曲線。

前:

<ImageView android:id="@+id/imageview01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerHorizontal="true" 
    android:layout_centerVertical="true" 
    android:src="@drawable/imagefile" /> 

後:

<ImageView 
    android:id="@+id/imageview01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentRight="true" 
    android:src="@drawable/imagefile" /> 

回答

1
+0

請問/這一切會改變的android:layout_centerHorizo​​ntal = 「真」 「假」 和android:layout_alignParentBottom爲true(以及類似的)? – Jonny

+0

不,但這會移動您的視圖 –

+0

由於我不知道目標設備的尺寸,我無法使用絕對平移,但需要繼續使用xml源中的相關命令。 – Jonny