This activity has a fixed Toolbar
on the bottom and the mid section (rest of the screen) is split in 2 equal parts (LinearLayout
with weight 50). This mid section is handled by a fragment. Each sub part has exactly the same views in it. Of course while running the content is different.
On double tap I want BOTH (1 and 2 marked on the picture) to display new content. I do not want to be able to go back on previous Views. I also do not want a list-effect to display new content, I'd like a stacked effect but without CardViews, because you can't remove the space around the cards totally. Also, the next 2 views should appear instantly (I have the data stored locally).
How can I achieve that? Obviously I'm quite new to Android. It seems to me none of the ListView/GridView/StaggeredView does that, although what I need is easier since I basically just want to replace my content using an adapter to avoid recoding.