How to use base-adapter-helper example: ListView has many Different layouts
Closed this issue · 2 comments
androidmalin commented
How to use base-adapter-helper example: ListView has many Different layouts
JoanZapata commented
You can't use QuickAdapter
for this, you have to create your own adapter overriding getViewTypeCount()
and getItemViewType()
. Then you can still use a different BaseAdapterHelper
for each different item in the convert
method.
androidmalin commented
Thanks very much