I have an Activity
which contains 3 Fragment
s. And all the 3 Fragment
s have ListView
in them.
I would like to know how to display the 3 Fragment
s in the ScrollView
in same Activity
?
Please let me know the solution.
Thanks.
I have an Activity
which contains 3 Fragment
s. And all the 3 Fragment
s have ListView
in them.
I would like to know how to display the 3 Fragment
s in the ScrollView
in same Activity
?
Please let me know the solution.
Thanks.
Copyright © 2021 Jogjafile Inc.
So I think the the right user experience here is to have only 1 scrolling view, the basic scroll view. The List Views in the fragment should then expanded to take as much space as they need.
The way I accomplished this was to override onMeasure like this
This way you have the 1 scrollable view, and you have 3 expanded list views.