我对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);
所以基本上我的XML文件中没有<ListView/>
。
答案 0 :(得分: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>
更新
你想要这样的东西吗?