0

我是 MGWT 和 GwtPhoneGap 的初学者。我有 .html 文件,其中包含一些超链接和文本内容以及少量图像。我想在我的视图中放置一个按钮,当我点击该按钮时,我想在同一视图上打开我的 html 页面。为此,我尝试了 GWT 超链接、框架类,但没有成功。GwtPhoneGap 是否提供任何直接的小部件支持,或者给我提供满足我要求的方法。提前致谢。

4

1 回答 1

0

这应该有效:

com.googlecode.mgwt.ui.client.widget.LayoutPanel main = new com.googlecode.mgwt.ui.client.widget.LayoutPanel();

com.google.gwt.user.client.ui.Frame frame = new com.google.gwt.user.client.ui.Frame(link);
frame.setSize("100%", "100%");

main.add(frame);
于 2013-09-05T09:43:08.497 回答