2013-05-28 33 views

回答

1

這裏是它的代碼將在中心顯示圖像

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" 
android:background="#FFFFFF" 
android:layout_gravity="center" 
> 

<ImageView 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:src="@drawable/splash" 
    android:scaleType="centerInside" 
    android:gravity="center" 

    /> 

</LinearLayout> 
+0

這是行不通的。我正在使用相對佈局 – Angelking

+1

檢查了這一點http://stackoverflow.com/questions/10075475/android-relative-layout-cant-make-image-on-center –