PinnedHeaderListView
PinnedHeaderListView copied to clipboard
A ListView with pinned section headers for Android
Hi, why the section can't clickable when it scroll to top? Please help me.
a little bug ! add this in onItemClick rawPosition = rawPosition -getHeaderViewsCount(); if(rawPosition
When a section view is pinned at the top of screen, it becomes the pinned section view, any touch events like click, swipe will be passed to the item views...
I tried to track positions for section and item, so I added codes below into your sample project: ``` listView.setOnItemClickListener(new PinnedHeaderListView.OnItemClickListener() { @Override public void onItemClick(AdapterView adapterView, View view, int...
Does this work with expandable listview?
Hi, I implemented this library in my project and i recieve a lot (!) of error reports all like this: Stack trace: java.lang.NullPointerException at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:578) at android.view.View.measure(View.java:16831) at PinnedHeaderListView.ensurePinnedHeaderLayout(PinnedHeaderListView.java:138) at...
When first used showing data. And do some operations, when I need to refresh datas, calling notifyDataSetChanged(), NullPointerException thrown. I saw the log, getItemId(int section, int position) the parameter position's...