Android 具有 2-3 个元素和一个底部按钮的应用相对布局

Android app relative layout with 2-3 elements and a bottom button

我想设计一个android activity 相对布局。彼此之间的垂直线中应该有 3 个(或以后的 4 个)元素。我试过了,但是textview隐藏在listview后面。

代码有什么问题,如果我想在文本和列表视图之间或列表视图和按钮之间插入第四个元素...我应该如何更改它以及它应该如何显示...就像图像一样。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:paddingLeft="10dp"
    android:paddingRight="10dp" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:paddingBottom="10dp"
        android:layout_above="@+id/listview"
        android:text="@string/info" />

    <ListView
        android:id="@+id/listview"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/button"
        android:layout_marginBottom="10dp" />

    <ImageButton
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:onClick="start"
        android:src="@drawable/button1" />

</RelativeLayout>

尝试将 ReltiveLayout 更改为 LinearLayout 或将 LinearLayout 放在 RelativeLayout 之外,然后 orientation="vertical"TextView 放在 RelativeLayout 之外。像这样:

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

   <TextView
       android:id="@+id/textview"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="@string/info" />

   <RelativeLayout
       android:paddingLeft="10dp"
       android:paddingRight="10dp" 
       android:layout_width="fill_parent"
       android:layout_height="fill_parent">

       <ListView
           android:id="@+id/listview"
           android:layout_width="fill_parent"
           android:layout_height="match_parent"
           android:layout_above="@+id/button"
           android:layout_marginBottom="10dp" />

       <ImageButton
           android:id="@+id/button"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_alignParentBottom="true"
           android:layout_centerHorizontal="true"
           android:onClick="start"
           android:src="@drawable/button1" />

   </RelativeLayout>

</LinearLayout>