在 ui.xml 中设置 styleName 属性会覆盖小部件构造函数中设置的primaryStyleName
我编写了一个具有自己的样式集的自定义小部件。这些样式在小部件中包含的小资源接口中定义,并在小部件的构造函数中应用。
我想在 uibinder xml 文件中使用该小部件,并在那里应用其他样式。不幸的是,设置 styleName 属性似乎会删除构造函数中应用的样式,并且 setStyleName javadoc 确实表明它会清除其他样式名称。
这里最好的解决方案是什么?我可以重写 setStyleName,但这会在稍后删除选项。有没有办法从 ui.xml 文件中调用 addStyleName 而不是 setStyleName ?
I've written a custom widget with its own set of styles. These styles are defined in a little resource interface contained in the widget, and applied in the constructor of the widget.
I'd like to use the widget in a uibinder xml file, and apply additional styles there. Unfortunately, setting the styleName attribute seems to remove the styles applied in the constructor, and indeed the setStyleName javadoc indicates that it clears other style names.
What's the best solution here? I could override setStyleName, but that takes away options later. Is there a way to call addStyleName instead of setStyleName from the ui.xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 ui 活页夹文件中尝试过
addStyleNames
?Did you try
addStyleNames
in your ui binder file?