在vaadin中建立一个有效的页脚

时间:2014-03-17 12:57:20

标签: interface footer vaadin

我是vaadin的新人,我需要一些帮助。我有一个Web应用程序看起来像Windows桌面应用程序,我想要与一些带链接的徽标页脚。 http://www.inovamer.com.tr/喜欢这个。有谁可以解释我怎么能做到?

VerticalLayout footer = new VerticalLayout();

mainLayout.addComponent(footer);
mainLayout.setExpandRatio(content, 1);

我试图制作类似的东西,但并没有真正做出我想要的东西

1 个答案:

答案 0 :(得分:0)

您的主要布局必须是完整尺寸。

VerticalLayout vlMain = new VerticalLayout();
vlMain.setSizeFull();

vlMain.addComponent(content);
vlMain.setExpandRatio(content, 1.0f);

VerticalLayout footer = new VerticalLayout();
vlMain.addComponent(footer);