如何在列表视图中解决重复页脚按钮

时间:2013-07-31 20:46:16

标签: android android-listview

我是android开发的新手。花了一些时间后,我想出了如何制作自定义列表视图。这是我的代码。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="15dp"
            android:layout_marginTop="10dp"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:id="@+id/notedate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginLeft="15dp"
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <ListView
            android:id="@android:id/list"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- filler -->

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Add Note" />
    </LinearLayout>
</LinearLayout>

Listview很好但当时我想添加一个按钮,它应该只有一个。但现在它正在重复。

enter image description here

另外,如果有可能我想把按钮放在该区域的底部。

1 个答案:

答案 0 :(得分:0)

我认为您将整个ScrollView添加为“元素”。我可以建议将您的布局重新组织为ListView吗?

看看:
http://www.youtube.com/watch?v=wDBM6wVEO70
在大约26分钟,关于如何将页脚/标题添加到列表视图