我有兩個畫廊。圖片庫和一個文本畫廊分開。兩個畫廊的開始和結束都有空間。所有的都是相對的佈局。我不明白是什麼問題。請幫忙。如何刪除畫廊中的空間
我已經發布我的代碼也:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView android:text="Airing Now"
android:id="@+id/titletextview"
android:textSize="22dip"
android:textColor="@color/textcolor"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</TextView>
<Gallery
android:id="@+id/Gallery_image"
android:layout_below="@+id/titletextview"
android:spacing="15dip"
android:padding="15dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</Gallery>
<ImageView android:id="@+id/ImageView"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ImageView>
<Gallery
android:id="@+id/gallery_text"
android:layout_below="@+id/Gallery_image"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>
我在開始和畫廊鑑於年底空間。
你可以發佈你的佈局xml。你必須編輯你的問題並添加布局細節。 – Samuel
請發佈您的佈局xml。 – Ronnie
檢查這些鏈接, http://stackoverflow.com/questions/6606547/how-to-avoid-spacing-in-the-start-and-end-of-gallery 的http:// stackoverflow.com/questions/6752310/gallery-space-at-beginning-and-end – Randroid