0

我正在与画廊合作。我的布局是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/mySelection"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ff0000ff"
    android:textSize="20px"
    android:textStyle="bold" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:background="#fff785" >

    <Gallery
        android:id="@+id/myGallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        android:spacing="10dp" />
</LinearLayout>

</LinearLayout>

在这种情况下发生的是 获得画廊

但我希望它像画廊视图应该超越像 facebook 这样的背景。这是我想要的图像 预期的

请建议我可以做哪些修改来实现它。

4

1 回答 1

0

我找到了我上面提出的问题的答案。我将父布局设置为相对,并添加了带有我想要的背景的线性布局。有了这个,我将画廊放在线性布局之上。我能够得到我想要达到的目标。

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
 >

<TextView
    android:id="@+id/mySelection"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ff0000ff"
    android:textSize="20sp"
    android:textStyle="bold" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_margin="10dp"
    android:background="#fff785"
    android:layout_below="@+id/mySelection" >


</LinearLayout>

<Gallery
        android:id="@+id/myGallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:overScrollMode="always"
        android:spacing="10dp" />
</RelativeLayout>
于 2013-03-02T08:07:59.693 回答