Android Adapter
Adapter是用來連接資料和ListView的,
Adapter除了會用到ListView中,
另外會用到還有Spinner(類似下拉選單)的這個元件中。
簡單來說就像「接口」的關念。
自己在程式中建立的陣列資料,
用的會是ArrayList類的Adapter。
以下為常用的有幾種Adapter:
ArrayAdapter:將一組數組連繫到ListView
SimpleAdapter:適用於自訂ListView外觀的應用場合
BaseAdapter:抽象類別,所以有多個方法需要實作。適用於需要自訂ListView外觀等靈活應用的場合。
SimpleCursorAdapter:將一組現有的資料庫或聯絡人等ContentProvider的資料查詢的結果連繫到ListView中
自我LV~