0

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

<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>
4

1 回答 1

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>
于 2013-02-18T08:55:13.973 回答