Regardez le code XML ici s'il vous plaît:
<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">
<!-- Some stuff goes here -->
/>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<!-- Some stuff goes here -->
/>
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<!-- Some stuff goes here -->
/>
</TableRow>
</TableLayout>
Mon code est beaucoup plus long que cela, mais je viens d'éliminer les parties inutiles. Le problème est que je veux faire de ce TableLayout
un objet défilant afin que tous mes éléments puissent être affichés.
J'ai essayé de mettre cette ligne dans les TableLayout
afin de la faire défiler:
android:isScrollContainer="true"
Mais cela ne fait PAS le travail. Y a-t-il un moyen?