在listview下添加视图

时间:2013-09-28 09:04:12

标签: android listview

我使用ListActivity创建了listview 我想在该列表下面添加另一个视图。那我该怎么做呢? 这里有2个文件spacelist.xml和homescreen.java,我用它来创建列表。

spacelist.xml-
    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="70dp"
    android:background="@drawable/background"
    android:layout_marginBottom="10dp">

    <ImageView
        android:id="@+id/icon"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:src="@drawable/ic_launcher" >
    </ImageView>

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="15dp"
        android:text="@+id/label"

        android:textSize="20dp" >
    </TextView>

</LinearLayout>


homeScreen.java-

public class homeScreen extends ListActivity{

    String list[]={"My Ideas","Space1","Space2","All Notes","Create New Space"};
    ListView spaces;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        //To display as a list
           ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                    R.layout.spacelist, R.id.label, list);
                setListAdapter(adapter);
    }

}

现在假设我想在列表下面添加另一个视图。我该怎么做?

1 个答案:

答案 0 :(得分:0)

这实际上取决于您要对该视图执行的操作:始终在列表视图底部可见?或者你可以在列表底部显示该视图吗?

第一个选项,您可以使用Activity(而非ListActivity)并在布局中执行任何操作。

第二个选项,您可以为列表视图设置页脚,也可以在列表视图中设置+1项,该项目将是您的视图。当然,您必须在适配器中管理不同类型的视图,因此最好设置页脚。