Android布局不显示列表视图下方的按钮

时间:2013-01-31 22:35:03

标签: listview android-linearlayout

我有两个类似的项目,它们从DB中提取联系地址并在列表视图中显示。我需要选择联系人并单击按钮。下面是布局文件(与我在两个项目中使用的相同)。一个项目显示带按钮的列表,而另一个显示列表,而不是按钮。 有什么建议吗?

<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="wrap_content"
android:layout_marginLeft="10dp"
android:orientation="vertical"
tools:context=".MainActivity" >

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:stackFromBottom="false"
    android:transcriptMode="normal"
    android:choiceMode="multipleChoice"  >

</ListView>

<Button
    android:id="@+id/SelectBtn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/selectBtn"
    android:layout_weight="0" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

试试这段代码,

<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="wrap_content"
android:layout_marginLeft="10dp"
android:orientation="vertical"
tools:context=".MainActivity" >

<ListView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:stackFromBottom="false"
    android:transcriptMode="normal"
    android:choiceMode="multipleChoice"  >

</ListView>

<Button
    android:id="@+id/SelectBtn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Ok"
    android:layout_weight="0" />

</LinearLayout>