I am aware of recycling of views in LiveView
, I am also aware that we cannot have a listview as a child of scroll view
, which just scrambles the scrolling up.
I know the work around of using LinearLayout
or any other viewgroup and add components to it. Which is much feasible, but I like my app tuned, and I want to recycle views
when I am implementing the workaround.
If I inflate once and try to add that view, an exception occures and asks me first call removeView()
on parent.
Can any one tell me other workaround if there's one, or how can I implement recycling in this scenario ?