如何将 2 个参数传递给 AsyncTask 类?
我正在使用 AsyncTask 类在后台加载位图。我使用execute 方法来获取要加载的位图URL 的字符串数组。我想将位图加载到不同的 Imagevue 中。我的想法是传入一个 URL 和对图像 vue 的引用。
我想不出一个简单的方法来做到这一点,因为执行只接受 1 个参数。我怎么能这样做呢?
I'm loading a bitmap in the background using the AsyncTask class. I use the the execute method to take in a array of strings for the URL of the bitmap to load. I would like to load the bitmap into different Imagevues. My idea was to pass in a URL and a reference to a image vue.
I can't figure out a easy way to do this, because execute only takes in 1 parameter. How could I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个包装对象来保存这两个参数,或者只使用 ArrayList 或 Dictionary 之类的东西并将两个参数粘贴在其中。
不漂亮,但它有效。
Create a wrapper object to hold the two parameters, or just use something like an ArrayList or Dictionary and stick both your parameters in it.
Not pretty, but it works.