如何传递更多的值doInBackground
我的AsyncTask
样子是这样的。
private class DownloadFile extends AsyncTask<String, Integer, String> {
@Override
protected String doInBackground(String... sUrl) {
{
}
}
是否有可能以某种方式在我的身上传递更多的价值protected String DoInBackground
例如:protected String doInBackground(String... sUrl, String... otherUrl, Context context)
以及execute
之后如何AsyncTask
?new DownloadFile.execute("","",this)
或者其他的东西?