Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ListView separators using a CursorAdapter

I have a ListView which is populated using a CursorAdapter. I'd also like to have some separators in my ListView. I have accomplished this with an ArrayAdapter, but I'm not sure how to accomplish this with a CursorAdapter. Are there any strategies for doing so? Or am I out of luck?

like image 672
Andrew Avatar asked Oct 05 '10 15:10

Andrew


2 Answers

Here's some examples: http://bartinger.at/listview-with-sectionsseparators/

http://sunil-android.blogspot.com/2013/08/section-header-listview-in-android.html

Projects: http://code.google.com/p/android-section-list/

http://code.google.com/p/android-amazing-listview/

Best,

like image 185
fpanizza Avatar answered Oct 13 '22 00:10

fpanizza


Also this one: http://code.google.com/p/android-section-list/, here section header is "sticky" at the top of the list which makes it really nice.

like image 29
Jarek Potiuk Avatar answered Oct 12 '22 23:10

Jarek Potiuk