为什么我不能通过相对布局获得此设置?

时间:2015-04-19 01:30:14

标签: android layout

我正在编写一个Android应用程序,我希望在顶部有一个表格,在底部有一个列表,在同一个屏幕上有一些按钮。它有点忙,但这是我的设置。问题是,我不知道如何使这个布局正确,以便一切都保持不相互叠加。我在android studio中尝试了每一个。

这就是我想要的样子:

(每个人都对我的绘画技巧印象深刻): enter image description here

对我而言,相对布局最有意义。但是,每当我添加gridview时,我都无法让它与屏幕中心对齐。例如,它只是在设计师中取代:

enter image description here

我的问题是:有没有办法让这种情况发生?顶部项目不需要是可点击的,但我需要动态创建行和&列,使它看起来像一个表。因此,它可以是另一种控制。

1 个答案:

答案 0 :(得分:2)

如果我正确地理解了您的问题,那么您正尝试按照右下方的图像快照显示?

enter image description here


以下是该结构的xml

<?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:background="@android:color/white"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@android:color/darker_gray"
        android:orientation="vertical" >

        <GridView
            android:id="@+id/gridView1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:numColumns="3" >
        </GridView>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@android:color/black"
        android:orientation="horizontal" >

        <ListView
            android:id="@+id/listView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#D7DF01"
            android:layout_weight="1" >
        </ListView>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="#DF01A5"
            android:orientation="vertical" >

            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Button" />

            <Button
                android:id="@+id/button2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Button" />
        </LinearLayout>
    </LinearLayout>

</LinearLayout>

希望有所帮助!