如何将 2 个参数传递给 AsyncTask 类?

发布于 2024-10-30 20:19:19 字数 165 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然 2024-11-06 20:19:19

创建一个包装对象来保存这两个参数,或者只使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文