I have a layout with a nested scrollview and an adview anchored at the bottom of the layout. When I run the app the adview hides the content at the bottom of the nested scrollview. See picture:
https://i.stack.imgur.com/IVh1y.jpg
My first idea is to figure out the height of the adview to add a Space at the bottom of the nested scrollview with the same height, so that the last content of the scrollview would appear over the adview in this case. But the problem is the layout_height for the Adview is wrap_content and this height thus varies from device to device and I don't know how to get this height for the Space.
Any way to find out this height or a better solution?