請幫助我與主題。我可以將項目添加到ListView (LItem:= ListView.Items.Add),但是如何添加頁眉和頁腳? 在DELPHI XE5 !.不是JAVA。如何將頁眉和頁腳添加到ListView(Android XE5)
3
A
回答
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
3
LItem:= ListView.Items.Add; LItem.Purpose:= TListItemPurpose.Footer;
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控件,你必須給列表視圖或gridview的重量= 1。
相關問題
- 1. WkHtmlToXSharp如何添加頁眉和頁腳?
- 2. listview與頁眉和頁腳
- 3. 添加頁眉和頁腳到docbook
- 4. 如何將表添加到頁眉或頁腳?
- 5. 添加頁眉和頁腳宏
- 6. 添加頁眉和頁腳數據
- 7. 在graphviz中添加頁眉和頁腳
- 8. 添加頁眉和頁腳使用C#
- 9. 添加表頁眉和頁腳與jQuery
- 10. 如何添加頁眉和頁腳內容到pdfkit for node.js
- 11. 如何添加頁眉和頁腳到生成的PDF
- 12. 如何添加頁眉ListView中
- 13. 使用itext將頁眉和頁腳添加到pdf中xmlworker
- 14. 將頁眉和頁腳中的Android
- 15. QML ListView頁眉和頁腳項目?
- 16. ListView適配器的頁眉和頁腳
- 17. 如何添加頁眉和頁腳到Android的每個活動中
- 18. 將頁眉和頁腳圖像添加到PDF:頁眉圖像不顯示,頁腳被放大
- 19. 在Plone中追加頁眉和頁腳到pdf添加
- 20. Android - ListActivity,添加頁眉和頁腳視圖
- 21. 向Android中的gridview添加頁眉和頁腳
- 22. 如何將頁眉,頁腳,邊欄添加到asp.net c#中的網頁?
- 23. 如何防止Solr添加頁眉和頁腳?
- 24. 如何在TinyMCE編輯器中添加頁眉和頁腳?
- 25. 如何在laravel tcpdf中添加自定義頁眉和頁腳?
- 26. 如何在Swift中添加UICollectionView的頁眉和頁腳視圖
- 27. 如何在vbulletin 4.2中添加wordpress頁眉和頁腳4.2
- 28. 如何使用PDF :: API2 :: Lite添加頁眉,頁腳和圖像?
- 29. UICollectionView:如何在頁腳和頁眉之間添加空格?
- 30. 頁腳到頁眉
永遠不要這樣回答,必須描述你的問題。在回答本網站之前,請閱讀FAQ – Hamad