有几次,我因为建议使用以下方法而受到批评:

setPreferredSize setMinimumSize setMaximumSize

Swing组件。当我想要定义显示的组件之间的比例时,我没有看到任何替代它们的使用。有人告诉我:

对于布局,答案总是一样的:使用合适的 LayoutManager

我在网上搜索了一下,但我还没有找到任何关于这个主题的全面分析。我有以下几个问题:

Should I completely avoid the use of those methods? The methods have been defined for a reason. So when should I use them? In which context? For what purposes? What exactly are the negative consequences of using those methods? (I can only think adding portability between systems with different screen resolution). I don't think any LayoutManager can exactly satisfy all desired layout needs. Do I really need to implement a new LayoutManager for every little variation on my layout ? If the answer to 4 is "yes", won't this lead to a proliferation of LayoutManager classes which will become difficult to maintain? In a situation where I need to define proportions between children of a Component (eg, child1 should use 10% of space, child2 40% ,child3 50%), is it possible to achieve that without implementing a custom LayoutManager?


当前回答

大多数人对这些方法知之甚少。您绝对不应该忽略这些方法。这取决于布局管理器是否遵守这些方法。这个页面有一个表,显示了哪些布局管理器尊重哪些方法:

http://thebadprogrammer.com/swing-layout-manager-sizing/

我已经写了8年多的Swing代码,JDK中包含的布局管理器一直满足我的需求。我从来没有需要第三方布局管理器来实现我的布局。

我会说,你不应该尝试给布局管理器提示这些方法,直到你确定你需要他们。做你的布局,不给任何大小提示(即让布局管理器做它的工作),然后你可以做一些小的修改,如果你需要。

其他回答

在这种情况下,我需要定义一个组件的孩子之间的比例(孩子1应该使用10%的空间,孩子2 40%,孩子3 50%),是否有可能在不实现自定义布局管理器的情况下实现?

也许GridBagLayout可以满足你的需求。除此之外,网络上有大量的布局管理器,我打赌有一个符合你的要求。

Should I completely avoid the use of those methods? I wouldn't say "avoid" them. I'd say that if you think you need them, you're probably doing something wrong. Component sizes are determined in context. For example, Text component sizes are determined by the number of rows and columns you specify, combined with the font you may have chosen. Your button and label size will be the size of the graphic, if you set one, or the space needed to display the text you set. Each component has a natural size, and the layout managers will use those to lay everything out without you needing to specify sizes. The main exception is the JScrollPane, which has a size independent of whatever it contains. For those, I will sometimes call setSize(), and let that size determine the initial window size, by calling JFrame.pack(). Usually, I will let the window size determine the JScrollPane size. The user will determine the size of the window. Many layout managers ignore the sizes you set anyway, so they often don't do much good.

定义这些方法是有原因的。那么什么时候使用它们呢?在什么情况下?为了什么目的? 我相信添加它们是为了给布局管理器提供提示。它们可能是由于历史原因而编写的,因为布局管理器是新的,人们并不完全信任它们。我认识一些开发人员,他们避免使用布局管理器,并手动放置所有东西,只是因为他们不想费心学习新的范例。这是个糟糕的主意。

使用这些方法的负面后果究竟是什么?(我只能考虑在不同屏幕分辨率的系统之间增加可移植性)。 它们是无效的,而且会产生糟糕的布局,物体会被挤压或拉伸到非自然的大小。而且布局会很脆弱。更改窗口大小有时会破坏布局,并将内容放在错误的位置。

I don't think any LayoutManager can exactly satisfy all desired layout needs. Do I really need to implement a new LayoutManager for every little variation on my layout ? You shouldn't "implement" a new LayoutManager. You should instantiate existing ones. I often use several layout managers in a single window. Each JPanel will have its own layout manager. Some people balk at nested layouts, because they're hard to maintain. When I use them, I give each one its own creation method to make it easier to see what each one does. But I never "implement" a layout manager. I just instantiate them.

如果4的答案是“是”,这是否会导致LayoutManager类的激增,从而变得难以维护? 如果你正在为布局中的轻微变化实现新的布局管理器类,那么你使用它们是错误的。如果你只是实现新的布局管理器,你可能做错了什么。我唯一一次扩展LayoutManager类,是向JScrollPane添加缩放滑块。

In a situation where I need to define proportions between children of a Component (eg, child1 should use 10% of space, child2 40% ,child3 50%), is it possible to achieve that without implementing a custom LayoutManager? The JSplitPane has a way of specifying the percentage each component should get. The divider is movable by default, but you can turn that off if you want. I don't use that feature much. I usually have some components that take up a set size, and the rest of the space is taken up by a scroll pane. The scroll pane size will adjust with the window size. If you have two scroll panes side by side, you can put them in a JSplitPane and specify the percentage of new space given to each one as the user expands and contracts the windows.

如果你在Java Swing的布局上遇到了麻烦,那么我可以强烈推荐由Karsten Lentzsch免费提供的JGoodies FormLayout,它是Forms免费软件库的一部分。

这个非常流行的布局管理器非常灵活,可以开发非常精致的Java ui。

您将在这里找到Karsten的文档,以及eclipse的一些相当不错的文档。

大多数人对这些方法知之甚少。您绝对不应该忽略这些方法。这取决于布局管理器是否遵守这些方法。这个页面有一个表,显示了哪些布局管理器尊重哪些方法:

http://thebadprogrammer.com/swing-layout-manager-sizing/

我已经写了8年多的Swing代码,JDK中包含的布局管理器一直满足我的需求。我从来没有需要第三方布局管理器来实现我的布局。

我会说,你不应该尝试给布局管理器提示这些方法,直到你确定你需要他们。做你的布局,不给任何大小提示(即让布局管理器做它的工作),然后你可以做一些小的修改,如果你需要。

这里有很多很好的答案,但我想补充一点关于为什么你应该避免这些问题的原因(这个问题又出现在一个重复的主题中):

除了少数例外,如果你正在使用这些方法,你可能正在微调你的GUI,使其在特定的外观上看起来更好(以及与系统相关的设置,例如你首选的桌面字体等)。这些方法本身并不是邪恶的,但是使用它们的典型原因是邪恶的。一旦你开始调整布局中的像素位置和大小,你就会在其他平台上面临GUI崩溃(或者至少看起来很糟糕)的风险。

例如,尝试更改应用程序的默认外观。即使只是使用平台上可用的选项,您也可能会惊讶于结果呈现的糟糕程度。

因此,为了保持GUI在所有平台上的功能性和美观性(记住,Java的主要好处之一是它的跨平台性),您应该依靠布局管理器等来自动调整组件的大小,以便在特定的开发环境之外正确地呈现。

综上所述,您当然可以设想这些方法是合理的。同样,它们本身并不是邪恶的,但它们的使用通常是指示潜在GUI问题的一个大危险信号。只要确保你意识到如果/当你使用它们时可能会出现很高的并发症,并且总是尝试和思考是否有另一种外观和感觉独立的解决方案来解决你的问题——通常你会发现这些方法是不必要的。

顺便说一下,如果你发现自己对标准的布局管理器感到沮丧,有很多好的免费、开源的第三方布局器,例如JGoodies的FormLayout或MigLayout。一些GUI构建器甚至内置了对第三方布局管理器的支持——例如,Eclipse的WindowBuilder GUI编辑器附带了对FormLayout和MigLayout的支持。