mithun_ghose
mithun_ghose

Reputation: 68

Is it possible to populate HTML table from a remote database in Android?

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

Answers (1)

Nikko Dela Cruz
Nikko Dela Cruz

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

Related Questions