I\'m creating a spinner and I\'ve added an OnItemSelectedListener to it.
However I\'ve noticed that it fires on create.
Now I was wondering if there wa
@Override
public void onItemSelected( AdapterView> parent, View view, int position, long id)
{
if(view!=null && view.getId()!=0){
//do your code here to avoid callback twice
}
}