2016-05-16 7 views

Antwort

2

Versuchen Sie das !!!

spin.setOnItemSelectedListener(new OnItemSelectedListener() { 

     @Override 
     public void onItemSelected(AdapterView<?> arg0, View arg1, 
       int arg2, long arg3) { 
      String yourName=spiner.getSelectedItem().toString(); 

     } 

     @Override 
     public void onNothingSelected(AdapterView<?> arg0) { 
      // TODO Auto-generated method stub 

     } 
    }); 

Wenn Code oben nicht hilft Ihnen. Versuche dies!!

0

In Java können Sie mit JComboBox Listenelemente anzeigen und ausgewählt werden. Beispiel:

String[] numbers= { "One", "Two", "Three", "Four", "Five" }; 
//Create the combo box, select item at index 4. 
//Indices start at 0, so 4 specifies the 'Five'. 
JComboBox clst= new JComboBox(numbers); 
petList.setSelectedIndex(4); 
petList.addActionListener(this);