When I create my activity, I setup a Spinner, assigning it a listener and an initial value. I know that the onItemSelected callback is called automatically during a
onItemSelected
Managed to find a solution in another stackoverflow question:
spinner.post(new Runnable() { public void run() { spinner.setOnItemSelectedListener(listener); } });