Reputation: 2591
Is it possible to have a Viewpager with fragments and a flexible height wrap_content
in a ScrollView or maybe in a ListView with MergeAdpater. For me both does not work, only the navigation tabs are displayed.
Upvotes: 0
Views: 76
Reputation: 5940
wrap_content
will not work for this. You either need to specify a constant height or calculate the height and set it in code.
Upvotes: 1