I've got a little problem. I've a spinner that contains items from a database, everything works fine, i click the spinner and the items show without problem, i click the item and then spinner shows the correct item, but, when i click again in the same spinner shows again the correct list of items but it shows automatically the first value of the items. I've tried to set in runtime the value it has when i clicked the spinner, and in the list that item is selected, but then spinner shows the name of the first item.
Here is the code:
if(event.getAction() == MotionEvent.ACTION_UP){
// Debemos obtener todos los jugadores que hay ahora mismo asociados
// a los spinners que ya están con un adapter
Spinner spinner = ((Spinner)v);
long idSelJugador = spinner.getSelectedItemId();
ArrayList<String> arrJugadores = getSelJugadores();
DBJugadoresActions dbJugadores = new DBJugadoresActions();
dbJugadores.getTableJugadores(getBaseContext(), arrJugadores);
SimpleCursorAdapter scA;
scA = new SimpleCursorAdapter(getBaseContext(), android.R.layout.simple_spinner_item, dbJugadores.getTableJugadores(getBaseContext(), arrJugadores,spinner.getSelectedItemId()) , new String[] {JugadoresColumnas.JUGADOR_DEPORTIVO}, new int[] {android.R.id.text1}, 0);
scA.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// Y ahora creamos el adapter
JugadoresAdapter(getBaseContext(),arrJugadoresLibres);
spinner.setAdapter(scA);
// Si ya hay un jugador seleccionado debemos de marcarlo
if(spinner.getSelectedItemId()!=0){
for(int i=0;i<spinner.getCount();i++){
if(spinner.getItemIdAtPosition(i)==idSelJugador){
spinner.setSelection(i);
}
}
}
}