0

我试图添加一个覆盖插件。https://vaadin.com/directory/component/overlays 我有图像叠加问题。我得到那个错误:

The type com.vaadin.terminal.Resource cannot be resolved. 
It is indirectly referenced from required .class file

问题出在这一行:

io.setImage(res);

我该如何解决?我将 icon-new.png 放入类包文件夹并添加到 maven 覆盖插件中

我的代码:

final ImageOverlay io = new ImageOverlay(button);

Resource res = new ClassResource(this.getClass(), "../icon-new.png");

io.setImage(res);
io.setComponentAnchor(Alignment.TOP_LEFT); // Top left of the button
io.setOverlayAnchor(Alignment.MIDDLE_CENTER); // Center of the image
io.setClickListener(new OverlayClickListener() {
public void overlayClicked(CustomClickableOverlay overlay) {
            Notification.show("ImageOverlay Clicked!");
        }
 });
 layout.addComponent(io);
 io.setEnabled(true);

我需要在按钮上显示一个叠加层。如果用户单击此按钮并添加新内容,则按钮上会出现类似 taht 的内容 在此处输入图像描述

4

1 回答 1

3

那是因为它仅与 Vaadin 6 兼容,正如附加页面中所示:

Vaadin 覆盖附加组件兼容性

如果您滚动到评论部分,有人建议使用与 Vaadin 7 兼容的附加组件的分支,但我看不到与 8 相关的任何内容:

大家好!您可以在此处找到 Vaadin 7.6 的 1.1.3 版本:https ://github.com/Haulmont/vaadin-overlays/releases

尤里·阿尔塔莫诺夫

与多个 Vaadin 版本兼容的附加组件会明确指出这一点,并且通常(但不一定...开发人员的选择)具有不同的版本编号,例如:1.x 用于 Vaadin 6,2.x 用于 Vaadin 7、3。 x 代表 Vaadin 8 等:

Vaadin 多重兼容性插件

无论哪种方式,单击特定 Vaadin 版本的链接,将选择与其兼容的最新附加版本。或者,如果您从下拉列表中选择附加版本,与之兼容的 Vaadin 版本将相应更新。


更新后编辑

您可以使用常规按钮 + 预定义的BUTTON_ICON_ALIGN_RIGHT Valo 样式。从javadoc:

/**
 * Align the icon to the right side of the button caption. Can be combined
 * with any other Button style.
 */
public static final String BUTTON_ICON_ALIGN_RIGHT = "icon-align-right";

请注意,为了获得最佳 UI 效果,我使用了 24x24 图标,但根据您的要求,您可以根据需要调整主题大小。此外,如果您没有图标并且不想花钱或花时间购买或创建自己的图标,您可以使用现有的Vaadin 字体图标(图标列表匹配的 java 枚举

public class ButtonWithIconOnTheRightComponent extends VerticalLayout {
    public ButtonWithIconOnTheRightComponent() {
        // text filed to specify icon URL
        TextField urlField = new TextField("Icon URL", "http://files.softicons.com/download/toolbar-icons/status-icons-set-by-iconleak/png/16x16/30.png");

        // button which updates its icon using the URL specified in the text field above
        Button button = new Button("Update icon", event -> event.getButton().setIcon(new ExternalResource(urlField.getValue())));

        // use valo style to align icon to the right
        button.addStyleName(ValoTheme.BUTTON_ICON_ALIGN_RIGHT);

        // add components to the UI
        addComponents(urlField, button);
        setSpacing(true);
    }
}

按钮与图标右对齐

于 2017-10-12T08:26:52.777 回答