2013-07-29 77 views
1

我正在爲eclipse中的android應用程序和我的Samuns Galaxy Tab 2.0 7(600x1024)上測試應用程序。我有問題,當我把ImageView的(圖像是600×300),因爲圖像不填滿整個屏幕,有填充:如何把imageView放在全尺寸?

enter image description here

如何刪除填充,並把圖像整個屏幕上?

這是ImageView的XML的:

<ImageView 
    android:id="@+id/imageView1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" 
    android:adjustViewBounds="true" 
    android:baselineAlignBottom="true" 
    android:cropToPadding="false" 
    android:src="@drawable/bg_large" /> 

我已經寫了,但我會再次因爲有consusions,我想設置圖像在屏幕這是600x1024的全尺寸(600×300)。在ss上,你可以看到圖像不是全角(cca。580),我不能放在最上面,也有填充。

+0

您需要縮放然後 – KOTIOS

+0

我在其他帖子中發佈瞭解決方案。 – CroiOS

回答

0

解決方案:

我已創建空的Android項目,默認情況下蝕把我activity_main.xml中此代碼:

android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 

現在,當我已經刪除了,我可以把我的全尺寸圖像。

我希望這會幫助別人。

+0

好的不錯... – KOTIOS

+0

@ Stacks28 - 是的,但現在我看到,它不是仍然在自然的尺寸,有一些設置,我可以設置該圖像必須在自然的尺寸。如果圖像是600x300,600x300,而不是600x400等。 – CroiOS

+0

屏幕或imageview? – KOTIOS