AdapterView及其子类之一:基本原理(ListView、ListActivity类型)
参考《疯狂android讲义》2.5节
1、AdapterView一般用于显示列表项,其内容由Adapter提供。调用Adapter的setAdapter(Adapter)方法设置Adapter即可。
AdapterView继承自ViewGroup,它的本质是容器。
2、几个重点类的继承关系
(1)Adapter:
java.lang.Object | |||
↳ | android.view.View | ||
↳ | android.view.ViewGroup | ||
↳ | android.widget.AdapterView<T extends android.widget.Adapter> |
java.lang.Object | |||||
↳ | android.view.View | ||||
↳ | android.view.ViewGroup | ||||
↳ | android.widget.AdapterView<T extends android.widget.Adapter> | ||||
↳ | android.widget.AbsListView | ||||
↳ | android.widget.ListView |
java.lang.Object | |||||
↳ | android.content.Context | ||||
↳ | android.content.ContextWrapper | ||||
↳ | android.view.ContextThemeWrapper | ||||
↳ | android.app.Activity | ||||
↳ | android.app.ListActivity |
3、创建ListView有两种方式:
(1)让Activity继承Activity,然后创建ListView。由ArrayAdapter或者SimpleAdapter提供内容
(2)让Activity继承ListActivity。然后直接加载ListView元素进行创建。由ArrayAdapter提供内容
但二者均是由Adapter提供其显示内容。