Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting more than one adapter for a single list view

Is it possible for setting more than one adapter to a single list?

For example

  • list.setAdapter(adapter1);

  • list.setAdapter(adapter2);

like image 913
Eldo Varghese Avatar asked Nov 03 '22 21:11

Eldo Varghese


1 Answers

Maybe you can try attaching multiple adapters to a single adapter like here

android attaching multiple adapters to one adapter

Or maybe this http://jsharkey.org/blog/2008/08/18/separating-lists-with-headers-in-android-09/

if I understand what you need it for correctly

Pls update why you want it for so we have a better understanding

like image 178
Vrashabh Irde Avatar answered Nov 10 '22 23:11

Vrashabh Irde