是否可以从Android中的远程数据库填充HTML表格?

时间:2017-11-16 01:35:03

标签: java android html css

我正在尝试从远程数据库获取数据并使用HTML表在ANDROID上显示它。我很丢失。如果有可能的话,请帮我这个建议我。

提前致谢。

1 个答案:

答案 0 :(得分:1)

是的,这是可能的,你可以使用android的默认表:

<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>

这显示3行,1列