PinnedHeaderListView
PinnedHeaderListView copied to clipboard
A ListView with pinned section headers for Android
if (pinnedHeaderHeight >= headerTop && headerTop > 0) { mHeaderOffset = headerTop - header.getHeight(); } else if (headerTop < 0) { header.setVisibility(INVISIBLE); } In the meizu mx 3, headerTop can...
When scrolling slowly downward (and the new section header moves upward), the newly pinned header flickers out / disappears for a split second showing the old pinned header that it...
My situation is like this: I placed a button inside one section header. It was clickable when there are no items behind that section header. But to my surprise, when...
When I add a header to the `ListView` by code e.g: `PinnedHeaderListView listView = (PinnedHeaderListView) view.findViewById(R.id.pinnedListView); LinearLayout header1 = (LinearLayout) inflater.inflate(R.layout.menu_left_header_profile, null); listView.addHeaderView(header1);` the position / section in `onSectionClick/onItemClick` is...
I need to change the text of the pinned header when user clicks on an item. Suppose, user clicks on the first item, I need to show "1" in the...
Any provision to make collapse and expand list items when header is clicked.
Is it possible to modify the code, to make it look like the current contacts-app, like on Lollipop? I'm talking about this: http://stackoverflow.com/q/27621425/878126
If we have different item counts for each sections, then how to alter the adapter as shown in the sample?Right now, the different sections should have equal number of items...
Hello, I'm using your amazing PinnedHeaderListView for my project, and I encountered this issue: when scrolling, item are displayed behind the pinned header, which is what I expects, but if...
Hi, I had modified your wonderful library, to add a shadow (fading) effect during scrolling. Please refer to http://yccheok.blogspot.com/2014/08/do-you-like-new-dividend-page-design.html on its effect. Thank you.