Within an Asynctask I call a method, i mean from within doInBackgroud() { ...code goes here ... }
, I call a method that is ..
A) .. within the async task class
B) .. in a different class
Is this method-call still executed in the thread of the asynctask?
I am wondering, because it is often said that "only code inside doInBackgroud() { ...code goes here ... }
is executed in a different thread.