You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Astrocode011235813 Hi, thank you for your library. I am using FlowLayoutManager in FlexibleAdapter now, I enabled stickyHeaders, but now it doesn't work, If I change LayoutManager to SmoothScrollLinearLayoutManager, stickyHeaders will not have the above problem.
Code
This is FlexibleFlowLayoutManager code, how should I fix this? thank you.
package com.example.flexibleadapterstickyheaderexample.manager;
import eu.davidea.flexibleadapter.common.IFlexibleLayoutManager;
public class FlexibleFlowLayoutManager extends FLMFlowLayoutManager implements IFlexibleLayoutManager {
public FlexibleFlowLayoutManager(int orientation) {
super(orientation);
}
@Override
public int getSpanCount() {
return 0;
}
@Override
public int findFirstCompletelyVisibleItemPosition() {
return 0;
}
@Override
public int findFirstVisibleItemPosition() {
return 0;
}
@Override
public int findLastCompletelyVisibleItemPosition() {
return 0;
}
@Override
public int findLastVisibleItemPosition() {
return 0;
}
}
Problem
@Astrocode011235813 Hi, thank you for your library. I am using FlowLayoutManager in FlexibleAdapter now, I enabled
![image](https://user-images.githubusercontent.com/10644057/44432397-7d61a080-a5d4-11e8-9bc7-503fd6d6f52b.png)
stickyHeaders
, but now it doesn't work, If I changeLayoutManager
toSmoothScrollLinearLayoutManager
,stickyHeaders
will not have the above problem.Code
This is
FlexibleFlowLayoutManager
code, how should I fix this? thank you.Annex
FlexibleAdapterStickyHeaderExample
The text was updated successfully, but these errors were encountered: