使用 GWT Google API 在基于 PhoneGap 的应用程序上加载图表

发布于 2025-01-08 14:16:07 字数 502 浏览 1 评论 0原文

我正在使用 GWT 可视化 API。这些图表在浏览器中运行良好,但在基于 Android 的 PhoneGap 应用程序中却无法运行。 事实上,我正在使用 GWT 项目生成的代码来创建 UI。 当在模拟器上记录应用程序时,我注意到部分代码未执行,并且该代码被插入到主线程调用的新 Runnable 中。

VisualizationUtils.loadVisualizationApi(threadName, packagesToLoad);

我怀疑这是因为PhoneGap不支持多线程,因为生成的JavaScript代码是在单线程中执行的。

那么您知道如何解决这个问题吗? 或者是否有其他方法可以调用 Visualization Google API 来绘制图表?

谢谢

I'm using GWT visualisation API. The charts work well in a browser, but they don't on an Android based PhoneGap application.
In fact, I'm using the generated code from a GWT project to create the UI.
When logging the application on a simulator, I remarked that a part of code is not executed and this code is inserted in a new Runnable called by the main thread.

VisualizationUtils.loadVisualizationApi(threadName, packagesToLoad);

I doubt that this is because PhoneGap doesn't support multi-threading, because the generated JavaScript code is executed in a single thread.

So have you any idea how to solve the problem?
Or is there any other method to be called to draw charts using Visualisation Google API?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲸落 2025-01-15 14:16:07

我发现了问题。这是互联网连接!
事实上,我很难在办公室通过代理将 Android 模拟器连接到互联网,因此我决定在家测试该应用程序,它可以正常工作。 但是即使从 Google 网站演示
是否有任何与 GWT 等效的库可以创建漂亮的图表,而无需编写 JavaScript 代码?

I found the problem. It was the Internet connection!
In fact, I have a difficulty to connect the Android emulator to the Internet in my office behind a proxy, so I decided to test the application at home and it works. But I find another problem when viewing some Charts (LineChart, PieChart) on the emulator even from the google web site demo.
Is there any equivalent library to GWT that creates pretty charts, without the need of coding JavaScript?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文