我正在使用Java Swing创建一个音乐播放器。在我想要制作的节目中,有一个我已经选择的播放列表。我希望通过列表来展示gui中的音乐。我想选择那个gui列表并播放音乐。我认为我可以使用for
或while
制作列表,但我没有任何想法。
如何在GUI上制作音乐列表?
答案 0 :(得分:1)
您可以使用ComboBox(下拉菜单)。
示例(来自链接):
String[] petStrings = { "Bird", "Cat", "Dog", "Rabbit", "Pig" };
//Create the combo box, select item at index 4.
//Indices start at 0, so 4 specifies the pig.
JComboBox petList = new JComboBox(petStrings);
petList.setSelectedIndex(4);
petList.addActionListener(this);
你也可以使用JButtons和布局管理器。