Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
        }
}
 }

}

share|improve this question
As I remember ... You ought to use ... spinner1.setPrompt("choose item"); – timonvlad Oct 10 '12 at 12:13
Do you want to scroll list in choice dialog to selected item? – Jin35 Oct 10 '12 at 12:14
I fear, you misunderstood the question. – RobinHood Oct 10 '12 at 12:17
No, that changes the title of the list of items – Rafael Osuna Dominguez Oct 10 '12 at 12:22
I think I didn't explain it right. I only need that when i click again on a spinner the text that shows doesn't change. The text must to be the same when the spinner shows the list and then, for example, i don't select an item – Rafael Osuna Dominguez Oct 10 '12 at 12:26
show 1 more comment

closed as not a real question by casperOne Oct 10 '12 at 12:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.