2013-07-11 91 views
0

我有我奇怪的問題。或者我錯了。但我的ImageView有點像填充。它看起來像這樣:Android - ImageView有點像填充

enter image description here

所以「MYIMAGE」應該對齊到最頂層。但是,當我檢查圖形佈局時,圖像調整得更低。所以就像我的整個圖像是綠色的虛線。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@drawable/master_background"> 

<ImageView 
    android:id="@+id/topPage" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:src="@drawable/image" /> 

</RelativeLayout> 

這是我的代碼。我試圖將src更改爲background,但我的圖像已調整。 如何調整圖像。此應用程序沒有窗口標題。

+0

嘗試過不同的scaleTypes? – WarrenFaith

+0

你確定填充不在你的實際位圖中嗎?頂部有空白/透明空間? –

+0

我沒有看到任何填充,將ImageView的背景設置爲測試目的,例如「#f00」並查看差異 – pskink

回答

1

在圖片視圖中使用android:adjustViewBounds="true"

<ImageView 
    android:id="@+id/topPage" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:adjustViewBounds="true" 
    android:src="@drawable/image" /> 
+1

,我完全忘了'android:adjustViewBounds =「true」'。謝謝 – elL

+0

@elL,很高興幫助。 Upvote會很高興:) –