JComboBox comboBox = new JComboBox();
comboBox.setUI(new BasicComboBoxUI() {
@Override
protected JButton createArrowButton() {
return new JButton() {
@Override
public int getWidth() {
return 0;
}
};
}
});
Making getWidth() return 0 ensures that:
a) the button is not shown
b) no space is reserved for it, letting you type in the whole field
I found that I had to do invoke .setUI() via SwingUtilities.invokeLater(), but depending on the structure of your code, you might not have to.
If you want autocomplete, add some items to the combo box, and use AutoCompleteDecorator.decorate(comboBox). The AutoCompleteDecorator class is part of SwingX, as previously mentioned.
This might make your box look weird when using another L&F, so you will have to choose which CombiBoxUI to instantiate, to get the right look.
If you do not want the drop-down to appear when there is nothing in the combo box, override this method in the BasicComboBoxUI as well:
@Override
public void setPopupVisible(JComboBox c, boolean v) {
// keeps the popup from coming down if there's nothing in the combo box
if (c.getItemCount() > 0) {
super.setPopupVisible(c, v);
}
}