HarmonyOS 有table表格控件吗

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

目前没有表格组件,暂时只能使用web组件引入一个本地的html,在html中绘制一个表格。demo如下:

import web_webview from '@ohos.web.webview'

@Entry
@Component
struct TableHtml {
  controller: web_webview.WebviewController = new web_webview.WebviewController();

  build() {
    Column() {
      Button("点击此处,加载HTML富文本").onClick(() => {
        this.controller.loadData(`<html> <head> <style> .table-font-size{ font-size:20px; } </style> </head> <body bgcolor=\"white\"> <table width="1000" border="5" height="1000"> <tr class="table-font-size"> <th>Month</th> <th>Month</th> </tr> <tr class="table-font-size"> <th>Month</th> <th>Month</th> </tr> <tr class="table-font-size"> <th>Month</th> <th>Month</th> </tr> <tr class="table-font-size"> <th>Month</th> <th>Month</th> </tr> </table> </body></html>`, "text/html", "UTF-8");
      }) // 通过$rawfile加载本地资源文件。
      Web({ src: 'www', controller: this.controller }).javaScriptAccess(true).domStorageAccess(true).fileAccess(true)
      // .defaultFontSize(this.fontSize)
    }
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
ArkUI没有table组件
3496浏览 • 1回复 待解决
那种公共的标题返回的标题控件
1759浏览 • 1回复 待解决
HarmonyOS 数据表格组件咨询
443浏览 • 1回复 待解决
HarmonyOS 是否全局loading这种控件
388浏览 • 1回复 待解决
Tab控件切换问题哪些?
252浏览 • 1回复 待解决
访问控制的系统控件哪些
384浏览 • 1回复 待解决
ATSUI可以调用JSUI的控件
2094浏览 • 0回复 待解决
使用List嵌套实现表格布局
999浏览 • 1回复 待解决
HarmonyOS日历组件
439浏览 • 1回复 待解决
HarmonyOS 自定义时间控件和日期控件
336浏览 • 1回复 待解决
HarmonyOS 适配openlayers库
96浏览 • 1回复 待解决
提问
该提问已有0人参与 ,帮助了0人