Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在初始化我创建的 GWT 视图,并且正在明确设置它的高度。
视图的高度不可调整。每当我渲染视图(从根面板清除并重新添加到根面板)时,视图的高度都是可调整的......
RootRootPanel.get().clear(); RootPanel.get().add(asWidget());
我不希望在 init() 函数中呈现视图。
还有另一种方法可以使视图的高度可调整吗?
谢谢
如果您想要可调整大小的屏幕,请使用RootLayoutPanel.get().add()方法。将小部件添加到内部,并且不要忘记在整个层次结构中以百分比形式提及其大小。我有类似的问题。只需检查以下链接及其接受的答案。
RootLayoutPanel.get().add()
GWT Re-sizing components on browser window resize