I want to achieve something like this. I am getting "survey titles"(type: string) and "different number of questions"(type:string) under every survey titles. I want to use survey titles as headers and questions of that survey should be display under that survey title header.
I have already tried https://github.com/emilsjolander/StickyListHeaders; and few other libraries. It is using first char of list data as header. Which in my case not possible.
This will be the look one header and its questions. When there are multiple survey with their questions, Sticky or pinned Header behaviour I want to achieve in my android app.
You can use the API for StickyListHeaders how you want and not use a char. I took this sample and changed a few items StickyListHeaders#getting-started indicated by my comments "
//*** NOTE:" Just have to learn that you can change implementations however you want in Java if the API is provided. Just takes experimenting. Nothing in this API forces you to use their 'char' method or method at all. This is just the build in API I assume.