I try to modify the Spinner content across the AsyncTaks but I can\'t and the Logcat is wrote \"09-19 16:36:11.189: ERROR/ERROR THE(6078): Only the original thread that created
You are trying to access UI components (View) from a background thread in your case inside the doInBackground() method. You are not allowed to do that.