3

请帮我解决问题。我可以将项目添加到 ListView (LItem := ListView.Items.Add),但是如何添加页眉和页脚?在德尔福 XE5!. 不是JAVA。

4

3 回答 3

4

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

于 2013-12-04T04:41:33.997 回答
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

于 2013-10-20T04:39:59.110 回答
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。

于 2014-06-19T10:08:40.517 回答