如何向ListView添加页眉和页脚(Android XE5)

时间:2013-10-20 04:21:43

标签: android listview delphi-xe5

请帮助我。我可以将Item添加到ListView (LItem:= ListView.Items.Add),但是如何添加页眉和页脚? 在DELPHI XE5中!不是JAVA。

3 个答案:

答案 0 :(得分:3)

LItem:= ListView.Items.Add; LItem.Purpose:= TListItemPurpose.Footer;

答案 1 :(得分:1)

我之前也遇到过这个问题。在我的组件中,我想在Listview中添加下拉刷新功能。我所做的是在xml布局文件中声明视图布局,然后在我的ListView子类中,我使用以下代码:

this.addHeaderView(headerRelativeLayout, null, false); //this is the ListView sub class

以下是我的全部代码:

private void init(Context context) {
inflater = LayoutInflater.from(context);
headerRelativeLayout = (RelativeLayout)inflate(context, R.layout.refresh_header_view, null);
arrowImage = (ImageView)headerRelativeLayout.findViewById(R.id.head_arrowImageView);
progressBar = (ProgressBar)headerRelativeLayout.findViewById(R.id.head_progressBar);
headerTextView = (TextView)headerRelativeLayout.findViewById(R.id.head_tipsTextView);
lastUpdateDateTextView = (TextView)headerRelativeLayout.findViewById(R.id.head_lastUpdatedDateTextView);

headerRelativeLayout.setPadding(0, -1 * HEADER_HEIGHT, 0, 0);
this.addHeaderView(headerRelativeLayout, null, false);

}

有关详情,请查看:Drag to Refresh in ListView Android Example

答案 2 :(得分:0)

试试这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="bottom|top"
    android:orientation="vertical" >

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:background="@color/background_bottom_bar"
        >

        <TextView
        android:text="Header"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
    </LinearLayout>

     <GridView
         android:id="@+id/gridview_practioner"
         android:layout_width="fill_parent"
         android:layout_height="match_parent"
         android:columnWidth="90dp"
         android:horizontalSpacing="10dp"
         android:numColumns="5"
         android:layout_weight="1"
         android:stretchMode="columnWidth"
         android:verticalSpacing="10dp" />

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

    <TextView
        android:text="Footer"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:background="@color/background_bottom_bar"
        android:layout_gravity="bottom"/>
    </LinearLayout>
</LinearLayout>

注意:

如果你使用listview或gridview,你必须给listview或gridview weight = 1。