/* Choice1.inc */ private void customizeLayout(Panel panel) { panel.setLayout(new FlowLayout()); Choice choice = new Choice(); choice.addItemListener(this); choice.add("rot"); choice.add("grün"); choice.add("gelb"); choice.add("blau"); choice.add("rosa"); choice.add("lila"); panel.add(choice); }