Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/myTableLayout"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- </TableLayout>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
I've been attempting to add a scroll bar for some time now, but I've had no luck. I've tried putting the ScrollView inside TableLayout, outside TableLayout, but with no luck. Does anybody have any idea as to what I should do so I can get the scroll working? Thank you for your help, this has been bothering me for some time now.
Edit: Stuff is added to the table dynamically while the program is running. Possibly I need to add something to my java code, I'm not sure. Thanks!

