- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试将 Jpanels 添加到 JpanelLayout 的水平组中。添加的自定义 JPanel 的数量由 int 值定义(将由用户定义)。我尝试根据用户的需要将尽可能多的相同 JPanel 添加到父面板中。目前,我尝试定义一些自定义 Jpanels,将它们添加到 arraylist,然后执行 for every 循环,尝试将它们添加到组中,但没有成功。这就是水平组布局代码的样子:
// initialization of custom panels and adding them to arraylist for adding into horizontalgroup.
MatchPanel customPanel1 = new MatchPanel();
MatchPanel customPanel2 = new MatchPanel();
MatchPanel customPanel3 = new MatchPanel();
ArrayList<MatchPanel>panels = new ArrayList<MatchPanel>();
panels.add(customPanel1);
panels.add(customPanel2);
panels.add(customPanel3);
// Panel being initialized later in program
javax.swing.GroupLayout jPanel5Layout = new javax.swing.GroupLayout(jPanel5);
jPanel5.setLayout(jPanel5Layout);
jPanel5Layout.setHorizontalGroup(
jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel5Layout.createSequentialGroup()
.addGap(19, 19, 19)
.addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
for(MatchPanel p : panels) {
.addComponent(p,javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
})
.addContainerGap(82, Short.MAX_VALUE))
.addGroup(jPanel5Layout.createSequentialGroup()
.addGap(233, 233, 233)
.addComponent(jLabel1)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
有没有办法定义 HorizontalGroup,然后使用程序其余部分中定义的函数向其添加组件,或者这只是我的语法错误的情况?如果我能让这个工作正常,我也可以将该方法转移到垂直组。
感谢您提供的任何帮助。
最佳答案
这是一个可能的解决方案。我希望它有帮助。
预览:
package sampleapp.ui;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import static java.lang.Integer.parseInt;
import java.util.ArrayList;
import javax.swing.GroupLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.LayoutStyle;
import javax.swing.WindowConstants;
import javax.swing.border.EmptyBorder;
/**
*
* @author brianson
*/
public class GroupLayoutExample extends JFrame {
private int elementsHeight; //the height of all objects in the panel and the gaps between them
private int numButtons;
private ArrayList<JButton> btnArray; //the array object that will hold the buttons created at runtime
private JPanel panel;
private JLabel label1;
private JTextField textField1;
private JButton button1;
public GroupLayoutExample() {
init();
}
public final void init(){
//initiallize variables
panel = new JPanel();
elementsHeight = 22; //initiallized with the value of 22 ie the size of the first and last container gaps
label1 = new JLabel("Number of buttons");
textField1 = new JTextField("");
button1 = new JButton("Show Buttons");
setPreferredSize(new Dimension(800, 600));
setSize(800, 600);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
panel.setPreferredSize(new Dimension(101, 234));
panel.setSize(101, 294);
panel.setBackground(new Color(153, 153, 153));
button1.addActionListener((e) -> {
numButtons = parseInt(textField1.getText());
if (numButtons > 1 && numButtons < 7) {
if (panel.getComponentCount() > 0) {
panel.removeAll();
}
makeButtons(numButtons);
}else{
JOptionPane.showMessageDialog(null, "Number of buttons must be greater than 1 but less than 7");
}
});
textField1.setBorder(new EmptyBorder(1, 10, 1, 1));
//main window layout
GroupLayout mainLayout = new GroupLayout(getContentPane());
getContentPane().setLayout(mainLayout);
mainLayout.setHorizontalGroup(mainLayout.createParallelGroup()
.addGroup(mainLayout.createSequentialGroup()
.addContainerGap(202, Short.MAX_VALUE)
.addComponent(panel, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addGroup(mainLayout.createParallelGroup()
.addGroup(mainLayout.createSequentialGroup()
.addComponent(label1)
.addGap(18, 18, 18)
.addComponent(textField1, GroupLayout.PREFERRED_SIZE, 176, GroupLayout.PREFERRED_SIZE)
)
.addComponent(button1)
)
.addContainerGap(203, Short.MAX_VALUE)
)
);
mainLayout.setVerticalGroup(mainLayout.createParallelGroup()
.addGroup(mainLayout.createSequentialGroup()
.addContainerGap(197, Short.MAX_VALUE)
.addGroup(mainLayout.createParallelGroup()
.addComponent(panel, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.addGroup(mainLayout.createSequentialGroup()
.addGroup(mainLayout.createParallelGroup()
.addComponent(label1, GroupLayout.PREFERRED_SIZE, 30, GroupLayout.PREFERRED_SIZE)
.addComponent(textField1, GroupLayout.PREFERRED_SIZE, 30, GroupLayout.PREFERRED_SIZE)
)
.addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
.addComponent(button1)
)
)
.addContainerGap(112, Short.MAX_VALUE)
)
);
}
public static void main(String[] args) {
EventQueue.invokeLater(() -> {
new GroupLayoutExample().setVisible(true);
});
}
void makeButtons(int num){
GroupLayout layout = new GroupLayout(panel);
panel.setLayout(layout);
//horizontal layout
GroupLayout.ParallelGroup horizontalPara = layout.createParallelGroup(GroupLayout.Alignment.LEADING);
GroupLayout.ParallelGroup horizontalPara1 = layout.createParallelGroup(GroupLayout.Alignment.LEADING);
GroupLayout.SequentialGroup horizontalSeq = layout.createSequentialGroup();
horizontalSeq.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE);
btnArray = new ArrayList<>();
for(int i = 0; i < numButtons; i++) {
btnArray.add(new JButton(String.format("Button %d", i + 1)));
}
btnArray.forEach((btn) -> {
horizontalPara1.addComponent(btn);
});
horizontalSeq.addGroup(horizontalPara1);
horizontalSeq.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE);
horizontalPara.addGroup(horizontalSeq);
layout.setHorizontalGroup(horizontalPara);
//Vertical layout
GroupLayout.ParallelGroup verticalPara = layout.createParallelGroup(GroupLayout.Alignment.LEADING);
GroupLayout.SequentialGroup verticalSeq = layout.createSequentialGroup();
verticalSeq.addContainerGap();
elementsHeight += (btnArray.size() * 22); //Adding the total height of buttons. Button default height is 22
btnArray.forEach((btn) -> {
verticalSeq.addComponent(btn);
int i = (btnArray.size() - 1) - btnArray.indexOf(btn);
//displayInfo(i + "", "Case ID");
switch (i) {
case 0:
verticalSeq.addContainerGap(11, Short.MAX_VALUE);
break;
case 1:
int gapSize = panel.getHeight() - elementsHeight; //Calculate size of gap so that the last component is placed at the bottom baseline
if (gapSize <= 0) {
gapSize = 11;
}
verticalSeq.addPreferredGap(LayoutStyle.ComponentPlacement.UNRELATED, gapSize, Short.MAX_VALUE);
break;
default:
verticalSeq.addPreferredGap(LayoutStyle.ComponentPlacement.UNRELATED);
elementsHeight += 11; //The height for an unrelated component placement is 11
break;
}
});
verticalPara.addGroup(verticalSeq);
layout.setVerticalGroup(verticalPara);
}
}
它是如何工作的:首先为您的各种组布局方向创建变量,在本例中,我有并行组和顺序组。根据您想要实现的布局,将您在运行时创建的对象添加到相应的并行和顺序组中。有关在这些组中放置对象的更多信息,请参阅 How to Use Group Layout(The Java™ Tutorials) .
将组件添加到组后,将水平和垂直布局组设置为适当的并行和顺序组。
关于java - 使用 value 生成 jpanels 并将其添加到水平组布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36765168/
我目前正在研究一个项目欧拉问题(www.projecteuler.net),但遇到了一个绊脚石。其中一个问题提供了一个 20x20 的数字网格,并要求直线上 4 个数字的最大乘积。这条线可以是水平的、
我有两个表,我需要从每个表中选择一列。 这必须在单个查询中完成。 好消息是这两列以正确的方式排序,并且它们都包含相同数量的行。 现在,我知道我可以通过 rowid 加入两个表,但它很慢,因为它必须进行
我想在我的 iPad 应用程序中实现一个布局,该布局具有一个可左右滚动而不是上下滚动的合适 View : 所以而不是 第 1 行第 2 行第 3 行(垂直滚动)这将是 :第 1 行、第 2 行、第 3
我有五个尺寸的图像:600x30、600x30、600x30、600x30、810x30。它们的名称分别是:0.png、1.png、2.png、3.png、4.png。 如何使用 ImageMagic
我正在寻找一个选项来滚动多个列表(水平),如附件中的图片所示。您可以向左或向右滑动以进入下一个 ListView 。顶部应该有一些按钮可以单击或滚动 我尝试将 ListViews 放入类似此代码的内容
这些值之间是否存在数学关系?如果我知道 hFOV 和 vFOV,我可以计算对角 FOV 而不涉及焦距等其他值吗? 我的第一个想法是使用毕达哥拉斯定理,但也许这是错误的。 最佳答案 感兴趣的物理量是传感
我正在尝试在 game_width=640 和 game_height=480 的窗口内绘制网格。网格单元的数量是预定义的。我想在水平和垂直方向上均匀分布单元格。 void GamePaint(HDC
你好,我已经发布了我的 iphone 应用程序 Micro-Pitch,现在正在将它移植到 android 上。我不知道如何在 ScrollView 中画线,想知道我做错了什么。 这是我的 Scrol
如果您访问我的网站:www.ryancoughlin.com - 如果您在页面右侧看到 Google、Yahoo 等 RSS 按钮。我试图让它们均匀对齐,它们的图像高度都相同,我一直试图让它们均匀对齐
我想将此 Material 水平居中: 最佳答案 将 text-align:center 添加到您的 anchor 。我假设您的 zoom1 具有 display
我正在努力做到这一点,以便我的旋转木马可以与其他文本共享一个水平行,但由于某种原因它无法正常工作,当它设置为 40% 时它占据了 100% 的宽度。 我将在下面发布代码和屏幕截图。 在上图中,它显示了
问题来了。我正在尝试放置一些 彼此相邻的元素。 div 的宽度s 未指定,取决于它们的内容。我正在使用下面的 CSS 代码来定位 彼此相邻: #div{ height: 50px; f
我正在尝试使用这样的 Bootstrap 并排打印表格 但是当我尝试打印预览时,我得到了这个 我的代码如下。我尝试了所有可能的解决方案,但我不知道为什么我无法打印我看到的页面。请指导我解决这个问题。
我想知道是否可以在背景中使用两种不同的颜色,并通过 Bootstrap 在每一侧扩展 100%。 这是我的意思的截图, 左侧为红色,右侧为深色,为更大的屏幕放大 100%。有什么简单的解决方案吗? 最
我正在尝试制作一个包含所有事件的滚动触发的整个网站。我只需要帮助来实现这种效果: 我有一个网站,其中包含一些填满所有视口(viewport)的 div,我希望用户能够向下滚动到一个命名的 div,然后
我的代码是 Show All Show Valid Show Pending Save Clear Download As CSV 我希望那些输入日期和按钮在 class="buttons" di
我在玩这个想法: 在这个 block 中我有 2 作为按钮和 并尝试了 float荷兰国际集团他们让他们粘在一起。实现这种效果的主要思想是操纵 ul 的宽度/显示状态。或者只是菜单部分。 Log
这个问题在这里已经有了答案: How can I horizontally center an element? (134 个回答) 关闭 4 年前。
我遇到了一个 CSS 问题,需要帮助。我在目录中有许多不同大小的图像,我正在动态列出它们以显示以下 View :(我仅显示两个图像作为示例) 这是我的 HTML:
这个问题在这里已经有了答案: 关闭 9 年前。 Possible Duplicate: How can I make a horizontal ListView in Android? 我已经多次使
我是一名优秀的程序员,十分优秀!