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?
They are called Var Args.. Just like an array.. U can pass multiple items and just access like params[0].. etc..
params[0]