关于 smartgwt setIcon(String url) 的问题
我的项目中与源文件位于同一目录中的图像图标。从源文件中,我调用button.setIcon(“image.png”),或button.setIcon(“/image.png”)或button.setIcon(“full/path/to/image.png”),但它不显示我的图像。我的问题是:Smart Gwt 如何解析图像的 url 路径?我查看了文档,这还不清楚。谁能帮忙解决这个问题吗?谢谢。
I have image icons in the same directory in my project as the source file. From the source file I call button.setIcon("image.png"), or button.setIcon("/image.png") or button.setIcon("full/path/to/image.png") but it does not display my image. My question is: how does Smart Gwt resolve url paths for images? I've looked at the documentation and this is not clear. Can anyone help with this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我成功地使用以下过程来获取 SmartGWT 工作的图像。
在与 GWT 模块的
client
包相同的级别上,我创建了一个名为public
的文件夹。 (在 Eclipse 中,您无法创建名为public
的包,因为这不是有效的包名称。您必须将其显式创建为文件夹。)名为public
的目录是经 GWT 特殊处理。 GWT 编译器将所有包含的内容复制到生成的主模块目录中。因此,我通常在public
下创建一个子目录images
并将属于我的 GWT 模块的所有图像放在那里。例如:
然后在入口点的开头,我告诉 SmartGWT 查看图像的
images
子目录(在本例中是mainmodule
我的主 GWT 的名称) module):路径的
[APP]
部分是特殊的 SmartGWT 语法。后来我可以像这样创建一个 IButton:
有时需要创建图像的 URL,不是为 SmartGWT,而是为纯 GWT 或纯 HTML。对于这些情况,您可以使用以下命令创建 URL
I use successfully the following procedure to get images with SmartGWT working.
At the same level as the
client
package of your GWT module I create a folder namedpublic
. (In Eclipse you cannot create a package namedpublic
because this is not a valid package name. You have to create it explicitly as a folder.) This directory with namepublic
is treated special by GWT. The GWT compiler copies all the included content to the resulting main module directory. So I usually create a subdirectoryimages
underpublic
and put all the images belonging to my GWT module in there.For example:
Then right at the beginning of the entry point I tell SmartGWT to look at the
images
subdirectory for the images (in this example ismainmodule
the name of my main GWT module):The
[APP]
part of the path is special SmartGWT syntax.Later I am able to create an IButton like so:
Sometimes it is necessary to create the URL to an image not for SmartGWT but for plain GWT or plain HTML. For these cases you can create the URL with
有时您还可以重复使用主题中的现有图标。
要使用它们,请尝试路径
[SKIN]/{ComponentName}/image.png
其中
{ComponentName}
是主题或标准主题中的现有文件夹之一。例子:
Sometimes you can also reuse existing icons from theme.
To use them try path
[SKIN]/{ComponentName}/image.png
where
{ComponentName}
is one of existing folders in your theme or standard theme.example:
我已经这样帮忙了。
以我的项目为例
I have helped this way.
For Example for my Project