我正在使用relativelayout來疊加圖像。在迄今爲止我測試過的所有屏幕尺寸上(從2.7到10.1英寸),我總是在圖像上獲得空白區域。在我的IDE中,我總是看到我的相關佈局導致了圖像頂部和底部的額外空間。爲什麼我在我的RelativeLayout中在ImageView的頂部和底部獲得空白空間?
這是爲什麼?我已將所有高度屬性設置爲wrap_content
,甚至添加了adjustViewBounds
屬性。
注意:您應該知道我的圖片尺寸較大,這意味着會有某種縮放。
感謝您的提示!
下面是代碼:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
android:focusable="true"
android:focusableInTouchMode="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/bgf"
android:textColor="#000000"
android:textSize="25sp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:paddingRight="5dp"
android:paddingLeft="5dp"
android:paddingBottom="5dp"
android:layout_gravity="center_horizontal"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:src="@drawable/cde"
android:contentDescription="@string/cde" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_gravity="center_horizontal"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:src="@drawable/fgh"
android:contentDescription="@string/abc" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
你的滾動視圖應該只有一個兒童。您的relativelayout不在滾動視圖內嗎? – Neoh
你能發佈佈局圖片 –
@Neoh有一些代碼缺失。再次檢查 – user2426316