我的JutxtPane中有两个完全出现在我的JTextPane上,当它们是它上面的唯一项目时。但是,当我向JTextPane添加更多文本时,按钮似乎从JTextPane中消失。例如:
possibleWordsPane.setText("");
possibleWordsPane.insertComponent(guessButton);
possibleWordsPane.insertComponent(botToggleButton);
possibleWordsPane.setText(possibleWordsPane.getText() + " \nTime left: " + time + '\n');
如果代码的最后一行被注释掉或删除,则仅显示按钮。 如何让我的两个按钮与更多文字一起显示?