ebarrenechea / header-decor

A couple of sticky header decorations for android's recycler view.
Apache License 2.0
878 stars 159 forks source link

Header view is empty #45

Closed supervital closed 7 years ago

supervital commented 8 years ago

Hi,

I have an issue when the first visible headers on the screen are empty.

Here my code:

RecyclerView recyclerView = (RecyclerView) view.findViewById(R.id.rv_list); recyclerView.setHasFixedSize(true); recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));

Adapter adapter = new Adapter (list); StickyHeaderDecoration decoration = new StickyHeaderDecoration(adapter);

recyclerView.addItemDecoration(decoration); recyclerView.setAdapter(adapter);

What I do wrong ? Thanks. :)