Reputation: 135
I'm trying to get a two line text in a JButton
The text is suppose to display between and
also between /> and just like this
but for some reason, it is not working in my for loop
JButton title[] = new JButton[6];
JButton button[] = new JButton[30];
String[] titleText = {"World Religion", "New Title", "New Title", "New Title", "New Title", "New Title"};
//
for (int i=0; i<6; i++) {
title[i] = new JButton();
title[i].setText("<html> <br /> </html>"+titleText[i]);
add(title[i]);
}
Upvotes: 0
Views: 498
Reputation: 50766
I suppose you're trying to split each title into lines using the space as a delimiter. If that's the case, I think this should do it:
for (int i=0; i<6; i++) {
title[i] = new JButton();
title[i].setText("<html>" + titleText[i].replace(" ", "<br />") + "</html>");
add(title[i]);
}
Upvotes: 0
Reputation: 3656
You need to put the text between the <html>
and </html>
tags as such:
title[i].setText("<html><br/>" + titleText[i] + "</html>");
The content inclosed between the tags <html></html>
tells the button to interpret it as HTML content.
Upvotes: 1