在Android XML中的两个按钮之间插入ListView

时间:2014-07-20 04:05:09

标签: android xml button android-listview

我有一个概念xml,如下所示,如何在两个按钮之间插入listview? enter image description here

这是我的xml代码,我应该在代码中添加或更改什么?

main.xlm

<!--  main.xml -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"    
    tools:context=".Main" >
    <Button android:text="Back To Main Menu"
        android:id="@+id/btn_add_contact"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

    <ListView
        android:id="@+id/lv_contact_list" 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/btn_add_contact"/>

    <Button android:text="Add New Moment"
        android:id="@+id/btn_add_contact"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="false"/>



</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

使用以下代码

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

<Button
    android:id="@+id/btn_add_contact"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Add New Moment" />

<ListView
    android:id="@+id/lv_contact_list"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />

<Button
    android:id="@+id/btn_add_contact"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Back To Main Menu" />