将图像加载到黑莓中的ListField
我正在使用图像从网络服务加载一些数据。但是图像加载出现问题。
我必须先显示默认图像,然后将加载的图像异步放置在默认图像上。我不知道如何执行此操作。请帮我。
I am loading some data from web service with image.But problem with image loading.
I have to display default image first,then the loaded image is placed on default image asynchronously.I do not have an idea how can i do this. Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,使用项目资源中的一些默认图像,所有行都相同。
然后为每一行运行一个线程来加载图像,在加载图像时使用线程中的回调来更新列表字段行。请参阅 Coderholic:Blackberry WebBitmapField
请记住,我们只能在 Blackberry 应用程序中使用有限数量的线程。因此,最好创建一些运行 3-5 个线程的线程池。
First, use some default image from project resources, same for all rows.
Then for each row run a thread to load image, use a callback in thread to update list field row when image is loaded. See Coderholic: Blackberry WebBitmapField
Remember that we can use only limited number of threads in Blackberry application. So better create some thread pool with 3-5 threads running.