excute()方法中传入的url是怎么传到doInBackground()方法中的呢?
doInBackground()方法中的形参是String...Params,AsyncTask中是有代码将url传入到这个形参吗?具体实现的细节有人讲一下吗?谢谢
doInBackground()方法中的形参是String...Params,AsyncTask中是有代码将url传入到这个形参吗?具体实现的细节有人讲一下吗?谢谢
2017-07-30
在开启AsycnTask的时候,可以通过execute()函数将URL传入。
具体可参考:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.image);
mImageview = (ImageView)findViewById(R.id.imageview);
mProgressBar = (ProgressBar)findViewById(R.id.progressbar);
new MyAsycTask().execute(URL);//开启异步线程方法
}
举报