AdrianoCelentano
AdrianoCelentano

Reputation: 2591

ViewPager in scrollable Layout

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

Answers (1)

Ross Hambrick
Ross Hambrick

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

Related Questions