I am developing an application with query execution through an API on a web server. My search page displays well in portait mode, but is too large for landscape mode, so I decided to just contain all the user interface elements in ScrollView by setting up the XML in the layout folder. The problem is that the buttons at the bottom of my form do not appear in the ScrollView landscape. I do not use ScrollView in portrait, so maybe a problem? The XML format is as follows:
<LinearLayout>
<ScrollView>
<LinearLayout>
<TableLayout>
</TableLayout>
<LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
source
share