0

我是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 是好的,但当时,我想添加一个按钮,它应该只有一个。但现在它正在重复。

在此处输入图像描述

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

4

1 回答 1

0

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

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

于 2013-07-31T21:02:12.857 回答