I have a plain vanilla layout:
<ScrollView>
<TableLayout>
<TableRow>
...
but the content gets clipped by the ScrollViews scrollbar.
This link illustrates the issue:
http://books.google.com/books?id=7tH3A0UrWEEC&lpg=PA54&ots=zztpvVWPXT&dq=android%20%22clipped%20by%20the%20scrollbar%22&pg=PA54#v=onepage&q&f=false
How to avoid content clipped by ScrollView scrollbar ?
Edit:
Adding android:layout_marginRight=”5dip” on ScrollView leaves ugly gap on righthand side of emulator screen. See below.
Any other tips ?
alt text http://www.freeimagehosting.net/uploads/96193a3b6e.png
Basically, you just have to add a margin of 5 or 10px on the right, in your
TableLayout!