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.
我需要一些帮助来为我将在运行时添加标签的组件选择或创建布局。例如,组件大小为 400*50,应用程序启动时为空。然后一些动作将在位置 0 添加第一个标签,在第一个标签的宽度位置添加第二个标签,在第一个标签的宽度 + 第二个标签的宽度处添加第三个标签,依此类推。有点像,FlowLayout除了我希望我的标签从容器的左侧而不是中心开始。感谢您的帮助。
FlowLayout
您可以使用FlowLayout(FlowLayout.LEFT)
只需使用FlowLayoutand 调用setAlignment(FlowLayout.LEFT);(或使用采用对齐代码的构造函数之一)。
setAlignment(FlowLayout.LEFT);