我和这个人有同样的问题:
MigLayout JTextArea is not shrinking when used with linewrap=true
我使用了其中一个答案中描述的解决方案;明确设置最小大小。如果将包含JTextArea的JPanel直接放在JFrame中,然后调整窗口大小,这样可以正常工作。
但是,将包含JTextArea的面板放在JScrollPane中时, 再次出现同样的问题。为什么会这样,以及如何解决它?
干杯
编辑:示例
public class MiGTest2 extends JFrame{
public MiGTest2(){
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel(new MigLayout("fillx, debug", "[fill]"));
JTextArea textArea = new JTextArea();
textArea.setLineWrap(true);
panel.add(textArea, "wmin 10");
//panel.add(new JTextField());
JScrollPane scrollPane = new JScrollPane(panel);
//add(panel);
add(scrollPane);
pack();
}
public static void main(String[] args){
new MiGTest2().setVisible(true);
}
}
如果取消注释//add(panel);
并注释add(scrollPane);
,缩小窗口大小也会缩小JTextArea。也就是说,它不适用于JScrollPane。还要注意布局管理器在第一次放大窗口后缩小窗口大小时,如何翻转并开始“摇动”所有内容
答案 0 :(得分:8)
我遇到了一个非常类似的问题,并且在提到的question中回答了答案也没有帮助我。但是,它确实提供了一个有价值的想法 - 问题在于JTextArea的宽度,并启用了包装。
对我来说有用的是使用命令width
在组件级别设置最小和首选宽度。例如,width 10:500:
。
答案 1 :(得分:7)
与JScrollPanes一起使用时,我遇到了与JTextAreas和包装类似的问题。
对我有用的解决方案是创建一个实现Scrollable接口的自定义面板,并覆盖getScrollableTracksViewportWidth()方法以返回true。此强制导致滚动窗格仅垂直滚动,并允许JTextArea中的换行按预期工作。
/**
* A panel that, when placed in a {@link JScrollPane}, only scrolls vertically and resizes horizontally as needed.
*/
public class OnlyVerticalScrollPanel extends JPanel implements Scrollable
{
public OnlyVerticalScrollPanel()
{
this(new GridLayout(0, 1));
}
public OnlyVerticalScrollPanel(LayoutManager lm)
{
super(lm);
}
public OnlyVerticalScrollPanel(Component comp)
{
this();
add(comp);
}
@Override
public Dimension getPreferredScrollableViewportSize()
{
return(getPreferredSize());
}
@Override
public int getScrollableUnitIncrement(Rectangle visibleRect,
int orientation, int direction)
{
return(10);
}
@Override
public int getScrollableBlockIncrement(Rectangle visibleRect,
int orientation, int direction)
{
return(100);
}
@Override
public boolean getScrollableTracksViewportWidth()
{
return(true);
}
@Override
public boolean getScrollableTracksViewportHeight()
{
return(false);
}
}
和MigTest2成为:
public class MiGTest2 extends JFrame
{
public MiGTest2()
{
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel(new MigLayout("fillx, debug", "[fill]"));
JTextArea textArea = new JTextArea();
textArea.setLineWrap(true);
panel.add(textArea, "wmin 10");
//panel.add(new JTextField());
//Wrap panel with the OnlyVerticalScrollPane to prevent horizontal scrolling
JScrollPane scrollPane = new JScrollPane(new OnlyVerticalScrollPanel(panel));
//add(panel);
add(scrollPane);
pack();
}
public static void main(String[] args)
{
new MiGTest2().setVisible(true);
}
}
答案 2 :(得分:0)
通常,您可以将JTextArea放入JScrollPane中。像这样:
JTextArea area = new JTextArea();
JScrollPane scroll = new JScrollPane(area);
JPanel panel = new JPanel();
panel.add(scroll);
答案 3 :(得分:0)
不确定您要在这里尝试实现的目标,尝试运行它并查看它是否符合您的需求?
public class MiGTest2 extends JFrame {
public MiGTest2() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel(new MigLayout("fillx, debug", "[fill]"));
JTextArea textArea = new JTextArea();
textArea.setLineWrap(true);
panel.add(new JScrollPane(textArea), "wmin 10, grow, push");
setLayout(new MigLayout("fill"));
JScrollPane scrollPane = new JScrollPane(panel);
add(scrollPane, "grow, push");
pack();
}
public static void main(String[] args) {
new MiGTest2().setVisible(true);
}
}