分类: 嵌入式
2009-12-29 22:19:12
Adapter 相关Interface 结构
2.
Adapter 相关的Class 结构
BaseAdapter实现了接口ListAdapter和SpinnerAdapter
如果我们要自己做属于自己的Adapter,以下顶层Adapter里方法都是需要重新实现的:
abstract Object
getItem(int position)
abstract int
getCount()
abstract long
getItemId(int position)
abstract int
getItemViewType(int position)
abstract View
getView(int position,View convertVeiw,ViewGroup parent)
下一次,我们将对几种相应的adapter逐一的进行分析