定製顏色的使用率使用定製顏色之後:工件示出了對的JTextPane背景顏色
Color bg = new Color(0f,0f,0f,0.5f);
用於JTextPane
背景我可以看到的JTextPane
這一背景中示出與來自Jlabel
包括背景的部分其中有JTextPane
。
圖片發生的事情的:
所以JTextPane
背景的底部是確定的,但最上面的一個,這是一個文本背後是有一些問題。
我該如何解決?我爲JTextPane
使用簡單透明背景的自定義顏色而犯了錯誤嗎?
代碼爲這部分程序:
t = new JTextPane();
SimpleAttributeSet style = new SimpleAttributeSet();
StyleConstants.setAlignment(style , StyleConstants.ALIGN_CENTER);
StyleConstants.setForeground(style , Color.white);
StyleConstants.setFontFamily(style, "Times new Roman");
StyleConstants.setFontSize(style, 20);
StyleConstants.setBold(style, true);
t.setParagraphAttributes(style,true);
t.setText(" " + text.getT1().get(0).toUpperCase());
t.setOpaque(true);
Color bg = new Color(0f,0f,0f,0.5f);
t.setBackground(bg);
t.setEditable(false);
t.setBounds(250, 400, 300, 50);
animation.add(t);