我試圖從數據庫中填充android ListView。使用BaseAdapter實現ListView從數據庫中獲取數據
我創建了一個擴展BaseAdapter的類,因爲我需要使用節標題做一個ListView。
那麼我該如何實現BaseAdapter擴展類?
非常感謝。
我試圖從數據庫中填充android ListView。使用BaseAdapter實現ListView從數據庫中獲取數據
我創建了一個擴展BaseAdapter的類,因爲我需要使用節標題做一個ListView。
那麼我該如何實現BaseAdapter擴展類?
非常感謝。
您應該擴展SimpleCursorAdapter
,以幫助您處理數據庫活動。
您也是從數據庫的部分標題,還是他們是任意的?
如果它們來自數據庫,請嘗試使用SimpleCursorTreeAdapter
和EpandableListView
。
謝謝,但他們不是......他們只是分開的日期範圍... – 2012-03-26 15:35:28
是的,但我想在本指南中製作節標題:[link](http://jsharkey.org/blog/2008/08/18/separating-lists-with-headers-in-android-09/ ),它由BaseAdapter實現。 – 2012-03-26 15:05:54
'SimpleCursorAdapter'是'BaseAdapter'的擴展 – dldnh 2012-03-26 15:17:02
非常感謝! – 2012-03-26 15:57:37