如何在两个相对布局之间放置gridview?

时间:2016-06-10 16:02:00

标签: android gridview

我正在构建一个布局,我希望在两个相对布局之间有一个居中(在屏幕中间)gridview。我怎么能这样做?

我的代码:

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

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="0sp"
        android:layout_weight="1"
        android:background="#000000"
        >


    </RelativeLayout>


    <GridView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none"
        android:numColumns="1"
        android:padding="5dp"
        android:id="@+id/gvMenu"
        android:layout_gravity="center_horizontal" />

    <RelativeLayout
        android:layout_width="fill_parent"
        android:background="#fff"
        android:layout_height="0sp"
        android:layout_weight="1">


    </RelativeLayout>


</LinearLayout>

谢谢。

1 个答案:

答案 0 :(得分:0)

此代码为您提供2个RelativeLayouts之间的GridLayout,布局的大小将根据您放入其中的内容进行调整,但GridView将始终位于它们之间

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<RelativeLayout
    android:id="@+id/first_relativeLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#f23f23">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="First RelativeLayout"
        android:layout_centerHorizontal="true"/>

</RelativeLayout>

<GridView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="none"
    android:numColumns="1"
    android:padding="5dp"
    android:id="@+id/gvMenu"
    android:layout_below="@+id/first_relativeLayout"
    android:layout_gravity="center_horizontal" />

<RelativeLayout
    android:id="@+id/second_relativeLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/gvMenu"
    android:background="#7e92d2">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Second RelativeLayout"
        android:layout_centerHorizontal="true"/>

</RelativeLayout>