How to center items in a Java combobox

java, jcombobox, renderer, swing

Solution

Try this link: How to Use Combo Boxes (The Java™ Tutorials > Creating a GUI With JFC/Swing > Using Swing Components)

class ComboBoxRenderer extends JLabel
                   implements ListCellRenderer {
  public ComboBoxRenderer() {
    setOpaque(true);
    setHorizontalAlignment(CENTER);
    setVerticalAlignment(CENTER);
  }
  //. . .

or

((JLabel)comboBox.getRenderer()).setHorizontalAlignment(SwingConstants.CENTER);

Problem

Is there a method for a combobox in Java that will center the items in the combobox? I tried this but it didn't work: ``` myCombobox.setAlignmentY(CENTER_ALIGNMENT); ``` Thanks!

Original source

Related problems