【发布时间】:2011-08-19 04:35:11
【问题描述】:
我有两个画廊。图片画廊和一个文本画廊分开。两个画廊的开头和结尾都有空间。都是相对布局。我不明白是什么问题。请帮忙。
我也发布了我的代码:
<?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。你必须编辑你的问题并添加布局细节。
-
嗨谢谢..我检查了这些链接,但它不起作用...
标签: android