Reputation: 68
I am trying to get data from a remote database and show it on ANDROID using the HTML table. I am pretty lost. Please help me with this suggest me if it is possible.
Thanks in advance.
Upvotes: 0
Views: 62
Reputation: 42
Yes, that is possible, there is a default table for android that you can use:
<TableLayout
android:layout_width="138dp"
android:layout_height="495dp"
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="8dp">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableLayout>
This shows 3 rows with 1 column
Upvotes: 1