Re: [android-developers] "Params" when using AsyncTask

2016-07-29 Thread ramesh babu
Asynctask params are already generic you don't need to customize that On Jul 29, 2016 9:45 AM, "Brian Gottier" wrote: > When using AsyncTask, there are always some params associated: > > > AsyncTask > > And when using it, I see all kinds of variations, where Params, Progress, > and Result are sw

[android-developers] "Params" when using AsyncTask

2016-07-28 Thread Brian Gottier
When using AsyncTask, there are always some params associated: AsyncTask And when using it, I see all kinds of variations, where Params, Progress, and Result are swapped out with String, Void, Integer, etc. I'm new to Android and Java, so just wondering if this is a special way that Java lets