Using xml Syntax Highlighting
- <LinearLayout id="main">
- <ScrollView id="scroll"/>
- <LinearLayout id="layBottom" orientation="vertical" gravity="bottom">
- <Button />
- <Button />
- </LinearLayout>
- </LinearLayout>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
The problem is, when the view inside scroll grows bigger than the screen, either, scroll obscures layBottom, or scroll goes under layBottom, rendering the lower Views in scroll unusable.
Does anyone have an idea? I tried putting it in a FrameLayout, and scroll goes underneath layBottom.

