我正在为我的 Eclipse 应用程序创建一个 CustomizableIntroPart。我使用工作正常的 XHTML 定义我的页面。但是处理图像会引起一些麻烦。我使用 IIntroXHTMLContentProvider 生成我的内容,但是当我生成 img-tag 并设置 src 属性时,不显示图像。图像可能在执行中,也可能在对 XHTML 页面有贡献的其他一些插件中。
Element img = dom.createElement("img");
img.setAttribute("src", getApplicationIcon(element));
img.setAttribute("class", "appIcon");
div.appendChild(img);
我找不到任何关于如何指定来源的文档。我尝试过类似的事情
plugin:my.plugin.id/icons/foo.png
任何帮助,将不胜感激。