I made a ScrollView containing a ViewPager, but the ViewPager does not grow in height. When the content inside the ViewPager is too big, it get \'pucht\'(?) inside, the tabl
On Android 8.0, you have to invoke another requestLayout to make it work:
....@Abhishek's answer sharePager.post(new Runnable() { @Override public void run() { sharePager.requestLayout(); } });