0

我对 ListViews 很陌生,这就是开始。

无论如何,我想做的显然是在我的列表顶部按住一个按钮或其他任何东西,它是以编程方式创建的,并且只有一个 xml 文件。xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    tools:context=".Main" >


    <ImageView
        android:id="@+id/picID"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingBottom="10dp"
        android:paddingRight="10dp"
        android:paddingTop="10dp" />

    <LinearLayout
        android:id="@+id/LinearLayout2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/eventName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="18sp" />

        <TextView
            android:id="@+id/eventTime"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_marginRight="5dp"
            android:textSize="16sp" />
    </LinearLayout>

</LinearLayout>

然后在 Main.java 我简单地定义我的 ListAdapter

SimpleAdapter adapter = new SimpleAdapter(Main.this, fillMaps,
                    R.layout.main, from, to);
            setListAdapter(adapter);

所以基本上我的<ListView/>XML 文件中没有。

4

1 回答 1

0
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#F2B1DBF3"
    android:orientation="vertical" >
<Button
 android:layout_alignParentTop="true"
android:id="@+id/button"
..
>
<LinearLayout

..
android:layout_below="@+id/button"
>...

</RelativeLayout>

更新

你想要这样的东西吗?

在此处输入图像描述

于 2013-10-06T17:19:22.697 回答