Android simpleadapter adapter usage details
Android simpleadapter usage details
Holderadapter background
Android AdapterView uses a lot, such as listview, GridView, spinner, etc. the native baseadapter does not support viewholder. Each time, define the internal class, the inflator root layout, set clicklistener for the internal view of item, and forward it to the caller of the adapter. It felt cumbersome to write more times, so I wrote a simple package to simplify the preparation of the adapter,
Warehouse connection http://git.oschina.net/phodev/SimpleAdapter.
Introduction to main documents
1. Commonadapter.java inherits from baseadapter, adds common functions, specifies the list data source through generics, implements getcount function instead of subclass, and adds bindclick to realize onitemclicklistener of adapter.
2. Baseviewholder.java and holderadapter are combined to implement the view initialization method similar to activity oncreate - > setcontentview - > findviewbyid.
3. Holderadapter.java inherits from commonadapter and is mainly used to drive baseviewholder.
usage method
1. Definition of adapter
2. Use of adapter
This completes the code defined and used.
Thank you for reading, hope to help you, thank you for your support to this site!