Ok so now I have Class A that contains some spinners that values will be populated by Class B that extends AsnycTask which grabs the s
Class A
Class B
AsnycTask
Create a interface like OnCompletRequest() then pass this to your ClassB constructor and simply call the method inside this interface such as complete(yourList list) in the method of onPostExecute(String result)
OnCompletRequest()
complete(yourList list)
onPostExecute(String result)