- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,在下面的代码中,我在左侧有一个 JTextArea。右上角的 JScrollPane 看起来不错。使用相同的代码,我还在右下侧添加了一个 JScrollPane,但是尽管代码相同,但保存了首选大小和绝对定位,垂直滚动条似乎没有显示。
我将在代码后添加 GUI 的屏幕截图。预先感谢您为解决此问题提供的任何帮助。
frame = new JFrame("Title");
frame.setLayout(null);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().setPreferredSize(new Dimension(width, height));
frame.pack();
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
frame.setLocation(dim.width/2-frame.getSize().width/2, dim.height/2-frame.getSize().height/2);
frame.setResizable(false);
frame.addKeyListener(this);
//scroll and text area
textArea = new JTextArea();
textArea.setText("Static Text\n");
textArea.setFont(new Font("Consolas", 0, 12));
textArea.setColumns(50);
textArea.setLineWrap(true);
textArea.setEditable(false);
scrollPane = new JScrollPane(textArea);
scrollPane.setPreferredSize(new Dimension(width/2, height * 4 / 5));
scrollPane.setBounds(width/2, 0, width/2, height * 4 / 5);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
frame.add(scrollPane);
inputTextArea = new JTextArea();
inputTextArea.setText(">");
inputTextArea.setFont(new Font("Consolas", 0, 12));
inputTextArea.setColumns(50);
inputTextArea.setLineWrap(true);
inputScrollPane = new JScrollPane(inputTextArea);
inputScrollPane.setPreferredSize(new Dimension(width/2, height / 5));
inputScrollPane.setBounds(width/2, height * 4 / 5, width, height);
inputScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
frame.add(inputScrollPane);
//map
mapView = new JTextArea();
mapView.setFont(new Font("Consolas", 0, 8));
mapView.setEditable(false);
mapView.setPreferredSize(new Dimension(width/2, height));
mapView.setText(state.getCurrentMap().toString());
mapView.addKeyListener(this);
mapView.setBounds(0, 0, width/2, height);
frame.add(mapView);
frame.pack();
frame.setVisible(true);
最佳答案
该代码存在几个重大问题,包括
setBounds()
对于 Swing 新手来说似乎是创建复杂 GUI 的最简单、最好的方法,但创建的 Swing GUI 越多,使用它们时遇到的困难就越严重。当 GUI 调整大小时,它们不会调整组件的大小,它们是增强或维护的皇家女巫,放置在滚动 Pane 中时它们完全失败,在所有平台或与原始分辨率不同的屏幕分辨率上查看时,它们看起来非常糟糕。相信我,这会让你的调试工作变得更加困难。因此,您最好学习并使用布局管理器。您可以在这里找到布局管理器教程:Layout Manager Tutorial ,您可以在此处找到 Swing 教程和其他 Swing 资源的链接:Swing Info .例如,下面的代码展示了如何使用简单的布局、文本区域列和行属性,以及如何使用键绑定(bind)来捕获用户按下 Enter 键(如果需要):
import java.awt.BorderLayout;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.*;
@SuppressWarnings("serial")
public class LayoutExample extends JPanel {
private static final int MV_ROWS = 65;
private static final int MV_COLS = 100;
private static final int TA_ROWS = 34;
private static final int TA_COLS = 54;
private static final int ITA_ROWS = 8;
private static final Font MV_FONT = new Font("Consolas", 0, 8);
private static final Font TA_FONT = new Font("Consolas", 0, 12);
private JTextArea mapView = new JTextArea(MV_ROWS, MV_COLS);
private JTextArea textArea = new JTextArea("Static Text\n", TA_ROWS, TA_COLS);
private JTextArea inputTextArea = new JTextArea(ITA_ROWS, TA_COLS);
public LayoutExample() {
mapView.setFont(MV_FONT);
mapView.setEditable(false);
mapView.setFocusable(false);
JScrollPane mvScrollPane = new JScrollPane(mapView);
textArea.setFont(TA_FONT);
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
textArea.setEditable(false);
textArea.setFocusable(false);
JScrollPane taScrollPane = new JScrollPane(textArea);
taScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
setEnterKeyBindings(inputTextArea);
inputTextArea.setFont(TA_FONT);
inputTextArea.setLineWrap(true);
inputTextArea.setWrapStyleWord(true);
JScrollPane itaScrollPane = new JScrollPane(inputTextArea);
itaScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
JPanel rightPanel = new JPanel(new BorderLayout());
rightPanel.add(taScrollPane, BorderLayout.CENTER);
rightPanel.add(itaScrollPane, BorderLayout.PAGE_END);
setLayout(new GridLayout(1, 0));
add(mvScrollPane);
add(rightPanel);
inputTextArea.setText(">");
}
// to capture the "enter" key being pressed without having to use a
// KeyListener
private void setEnterKeyBindings(final JTextArea textComponent) {
// only accept input when this component is focused
int condition = WHEN_FOCUSED;
InputMap inputMap = textComponent.getInputMap(condition);
ActionMap actionMap = textComponent.getActionMap();
// only will bind one keystroke -- that for enter key
KeyStroke enterKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0);
inputMap.put(enterKeyStroke, enterKeyStroke.toString());
// action to take if enter is pressed
actionMap.put(enterKeyStroke.toString(), new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
// get text from input text area, and then clear text
String text = textComponent.getText();
textComponent.setText(">");
// append this text to the upper text area
textArea.append(text + "\n");
// TODO: send text elsewhere via chat?
}
});
}
private static void createAndShowGui() {
LayoutExample mainPanel = new LayoutExample();
JFrame frame = new JFrame("Title");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> createAndShowGui());
}
}
关于java - JScrollPane 的奇怪问题 - 尽管使用了 : setVerticalScrollBarPolicy(JScrollPane. VERTICAL_SCROLLBAR_ALWAYS,但滚动条未显示;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45130364/
我有一个 JScrollPane,它的内容 Pane 有一个 JPanel。我向该 JPanel 添加了较小的 JPanel,正如预期的那样,如果我添加太多 JPanel,将会出现一个垂直滚动条。 问
我正在尝试在另一个 JScrollPane 中添加一个 JScrollPane。内部 JScrollPane 只会水平滚动,外部只会垂直滚动。 在这张图中,您可以看到添加 mainPanel 时水平滚
我正在尝试创建一个带有滚动条的容器,并且容器内部有两个内部面板。顶部内面板内还有另一个 JScrollPane。 但目前我遇到的问题是,当我的顶部内面板太长(宽度)时,顶部内面板内的滚动条被禁用,我只
你们能让我知道禁用水平滚动条的最佳方法是什么吗? 我有 宽度:100% 和 高度:280px 的 div。当我们有很长的连续文本(没有任何空格)时,我们会显示一个水平滚动条。 顺便说一句,我正在使用
我注意到这个问题主要出现在 OS 10.5.8 上的 Firefox 3.6.6 上,Safari 上偶尔也会出现这种情况(准备好惊讶的表情 - IE 实际上每次都工作正常 - 什么?!)。 我的网址
所以我有一堆JTable。每个JTable 都位于JScrollPane 内。然后,我将每个 JScrollPane 添加到 JPanel 中。然后,我将此 JPanel 添加到 JScrollPan
我在 JScrollPane 上放置了多个 JPanel。现在我有了它,所以如果你的鼠标在框架之外,那么它就不会拖动 JPanels。 当我在一个方向上移动组件时,我需要让它滚动。 (例如,如果我
有什么区别 JScrollPane.getViewportBorderBounds() and JScrollPane.getViewport() and JscrollPane.getVisible
此应用程序适用于触摸屏。我只需要仅当用户触摸 JScrollPane 区域时 JScrollPane 的滚动条可见。 我是 GUI 和 swing 的新手。这会很有帮助,我不明白是什么,或者如果在其他
出于布局目的,我需要在滚动内容底部和容器底部之间放置 15px 的空间:div class="scroll-pane" . 造型容器 .scroll-pane { padding-bottom:15p
我需要一个可以显示很多图像的程序,并且我需要一个可以滚动的窗口。我阅读了文档并在论坛上进行了搜索,但仍然没有成功。我尝试使用 JScrollPane 和 JFrame,如下所示。 JScrollPan
我今天遇到了这个新事物,但我不知道为什么。例如,当我想在面板中显示某些内容时,我只需将其添加到面板即可;但为什么我不能直接添加表格到滚动 Pane ,为什么我必须调用 setviewportview(
我今天遇到了这个新事物,我不知道为什么。例如,当我想在面板中显示某些内容时,我只需将其添加到面板即可;但是为什么我不能直接添加表格到滚动 Pane ,为什么我必须调用 setviewportview(
我一直在尝试缩小 JScrollPane 的内容宽度,例如。我已将 HorizontalScrollBarPolicy 设置为 NEVER,但这最终导致没有 ScrollBar 出现并且内容不再显
所以,在下面的代码中,我在左侧有一个 JTextArea。右上角的 JScrollPane 看起来不错。使用相同的代码,我还在右下侧添加了一个 JScrollPane,但是尽管代码相同,但保存了首选大
我在 div 上使用 JScrollPane 来滚动它。 div 包含一个自写的 javascript 代码,它从我的 tumblr 提要中获取最后几篇文章。但是,即使滚动 Pane 显示正常,但由于
请看下面的代码块 import java.awt.Color; import java.awt.Dimension; import javax.swing.JFrame; import javax.s
我在 Swing 中制作了一个简单的 GUI,其中在 JScrollPane 内、JSPlitPane 内、JPanel 内、....在 JFrame 内有一个大 JPanel(显示大 Buffere
我有一个带滚动条的 JPanel,我想向它添加很多 JLabel。但是滚动条不起作用。我无法使用滚动条,即使面板已满,它也不会滚动。这是我的代码: import java.awt.*; import
我正在尝试在 JScrollPane 中添加 2 个图像。第一个图像是背景,第二个图像与第一个图像重叠。当我运行我的程序时,问题只显示第二张图像! 请帮忙 ImageIcon ii = new Ima
我是一名优秀的程序员,十分优秀!