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>
你在截圖中看到的保證金也對圖像
檢查圖像 –
圖像的高度,你看到它是爲高,因此它具有頂部和底部沒有透明條紋。 – maidi