1
我想知道如何在HTML中查看圖片?在GWT中查看圖片HTML
例子:
HTML htmlS = new HTML(picture resource+"[加載中...]");
我怎麼能寫 「圖片資源」 GWT代碼?
我想知道如何在HTML中查看圖片?在GWT中查看圖片HTML
例子:
HTML htmlS = new HTML(picture resource+"[加載中...]");
我怎麼能寫 「圖片資源」 GWT代碼?
創建一個對象com.google.gwt.user.client.ui.Image
,並使用圖像資源的URL調用setUrl()
。
image.setUrl(GWT.getModuleBaseURL() + <relative path to image resource>)
您可以使用HTML插件的img標籤..
這是做正確的方式。 如果由於某種原因它必須是HTML,請使用「」; – dmazzoni 2010-06-26 20:57:16
非常感謝! – Oliver 2010-06-28 01:49:38