我有我奇怪的問題。或者我錯了。但我的ImageView
有點像填充。它看起來像這樣:Android - ImageView有點像填充
所以「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
,但我的圖像已調整。 如何調整圖像。此應用程序沒有窗口標題。
嘗試過不同的scaleTypes? – WarrenFaith
你確定填充不在你的實際位圖中嗎?頂部有空白/透明空間? –
我沒有看到任何填充,將ImageView的背景設置爲測試目的,例如「#f00」並查看差異 – pskink