我在我的GUI productComboBox
和categoryComboBox
中添加了2个JComboBox组件,并为每个组件定义了以下项目侦听器:
categoryComboBox.addItemListener(new GoItemListener());
productComboBox.addItemListener(new ProductItemListener());
用户首先选择一个产品,然后侦听器应根据选择的产品来填充类别框。我的项目侦听器是内部类。
ProductItemListener
调用方法populateCategories
,如下所示: protected void populateCategories() {
String product = productComboBox.getSelectedItem().toString();
myMediaDataAccessor.init(product);
ArrayList categoryArrayList = null;
categoryArrayList = myMediaDataAccessor.getCategories();
Iterator iterator = categoryArrayList.iterator();
String aCategory;
while (iterator.hasNext()) {
aCategory = (String) iterator.next();
categoryComboBox.addItem(aCategory.toString());
}
}
我的
productComboBox
中有两个产品项:音乐和视频。如果我选择“音乐”,那么我的categoryComboBox
将使用ArrayList中的字符串正确填充。问题是,如果我选择“视频”,则我的
categoryArrayList
包含正确的字符串ArrayList,因此由于没有任何异常,我的数据被返回并似乎添加到了categoryComboBox
中,只是我的categoryComboBox
从GUI中消失。有任何想法吗?
谢谢
最佳答案
根据您的随机代码,您很难猜出您在做什么,并且给定25%的接受率,我不确定当您似乎不欣赏您的建议时我是否应该回答。
无论如何,这就是我共享两个相关组合框的方式:
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
public class ComboBoxTwo extends JFrame implements ActionListener
{
private JComboBox mainComboBox;
private JComboBox subComboBox;
private Hashtable subItems = new Hashtable();
public ComboBoxTwo()
{
String[] items = { "Select Item", "Color", "Shape", "Fruit" };
mainComboBox = new JComboBox( items );
mainComboBox.addActionListener( this );
getContentPane().add( mainComboBox, BorderLayout.WEST );
// Create sub combo box with multiple models
subComboBox = new JComboBox();
subComboBox.setPrototypeDisplayValue("XXXXXXXXXX"); // JDK1.4
getContentPane().add( subComboBox, BorderLayout.EAST );
String[] subItems1 = { "Select Color", "Red", "Blue", "Green" };
subItems.put(items[1], subItems1);
String[] subItems2 = { "Select Shape", "Circle", "Square", "Triangle" };
subItems.put(items[2], subItems2);
String[] subItems3 = { "Select Fruit", "Apple", "Orange", "Banana" };
subItems.put(items[3], subItems3);
}
public void actionPerformed(ActionEvent e)
{
String item = (String)mainComboBox.getSelectedItem();
Object o = subItems.get( item );
if (o == null)
{
subComboBox.setModel( new DefaultComboBoxModel() );
}
else
{
subComboBox.setModel( new DefaultComboBoxModel( (String[])o ) );
}
}
public static void main(String[] args)
{
JFrame frame = new ComboBoxTwo();
frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
frame.pack();
frame.setLocationRelativeTo( null );
frame.setVisible( true );
}
}
如果您需要更多帮助,请发布SSCCE来显示问题。