2015-06-28 52 views
0

我的ScrollView中的圖像在頂部和底部都有邊距,我沒有在佈局中設置邊距。他們從哪裏來?滾動視圖中的不需要的邊距

<ScrollView 
    android:layout_x="0dp" 
    android:layout_y="25dp" 
    android:scrollbars="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:id="@+id/scrollView"> 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical"> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:scrollbars = "vertical" 
     android:id="@+id/InfoText"/> 
    <ImageView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:id="@+id/InfoImage"/> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/InfoImageText" /> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/InfoImageSource" 
     android:textSize="10sp" /> 
    </LinearLayout> 
</ScrollView> 

你在截圖中看到的保證金也對圖像 Screenshot of image margin

+0

檢查圖像 –

+0

圖像的高度,你看到它是爲高,因此它具有頂部和底部沒有透明條紋。 – maidi

回答

0

圖像被縮放和調整來適合你的佈局上。

您可以在佈局中使用android:scaleType屬性來更改此設置。

例如...

<ImageView 
    android:layout_width="match_parent" 
    android:layout_height="500dp" 
    android:src="@drawable/app" 
    android:scaleType="centerCrop" 
    android:id="@+id/InfoImage"/>