我是MGWT和GwtPhoneGap的初学者。我有.html文件,其中包含一些超链接和文本内容以及少量图片。我想在我的视图中放置一个按钮,当我点击按钮时我想在同一视图上打开我的html页面。为此我尝试了GWT Hyperlink,Frame类,但没有成功。是否有从GwtPhoneGap给出的任何直接小部件支持,或者给我达到我的要求的方法。提前致谢。
答案 0 :(得分: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);