我正在编写一个Android应用程序,我希望在顶部有一个表格,在底部有一个列表,在同一个屏幕上有一些按钮。它有点忙,但这是我的设置。问题是,我不知道如何使这个布局正确,以便一切都保持不相互叠加。我在android studio中尝试了每一个。
这就是我想要的样子:
(每个人都对我的绘画技巧印象深刻):
对我而言,相对布局最有意义。但是,每当我添加gridview时,我都无法让它与屏幕中心对齐。例如,它只是在设计师中取代:
我的问题是:有没有办法让这种情况发生?顶部项目不需要是可点击的,但我需要动态创建行和&列,使它看起来像一个表。因此,它可以是另一种控制。
答案 0 :(得分:2)
<?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>
希望有所帮助!