Take a look at the XML code here, please:
<TableLayout android:id="@+id/tableLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="10dip" xmlns:android="http://schemas.android.com/apk/res/android"> <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content"> /> </TableRow> <TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content"> /> </TableRow> <TableRow android:id="@+id/tableRow3" android:layout_width="wrap_content" android:layout_height="wrap_content"> /> </TableRow> </TableLayout>
My code is much longer than me, but I just eliminated the unnecessary parts. The problem is that I want to scroll this TableLayout scroll to show all my stuff.
I tried putting this row in a TableLayout to make it scrollable:
android:isScrollContainer="true"
But he does NOT do this work. Is there any way?
android scroll android-tablelayout
iTurki Jun 28 '11 at 22:15 2011-06-28 22:15
source share