I want the ListView style to have a RecyclerView with a title at the top, and I don't want the title to be displayed again, EVER.
I am completely new to RecyclerView and LinearLayoutManager , but I think I should not be too complicated extending the LinearLayoutManager .
Additional information if necessary, but I think this is enough:
I already have a RecyclerView with a title representation at position 0. This part was fairly simple with SO answers. But the view is processed, which causes many problems with the EditText views in the header (an attempt to maintain focus, restore focus, maintain visibility, not do strange things with the automatic correction function, continue to print, and EditText is technically absent / recycled, etc.). So a simple solution is to not use this view, which I think is possible with the layout manager, but I donβt know where to start.
I can't just put a title above my list because I want it to scroll through the list (it's too tall to be fixed at the top of the screen).
source share