I\'m unfamiliar with the parameter syntax in doInBackground(Params... params)
doInBackground(Params... params)
What is this type of thing called, and how do I utilize it?
Params... params represents a vararg. It was added in J2SE5.0. It means you can pass any number of arguments or you can say array of arguments params[0]
Params... params
Thanks Deepak