在我的 WebView 上执行需要时间且不会降低 Web 浏览速度的任务 - 并行操作
我希望用户浏览互联网并向下/向上滚动网站,同时在用户不知情的情况下从互联网下载图像 - 下载图像的操作不会减慢应用程序 - 现在看起来网页冻结了几秒钟。 下载图像后,我用 ViewFlipper 显示消息。 我怎样才能实现这个目标?
谢谢
I want a user browses the Internet and scrolls the site down / up while I download images from the internet without the user knowledge - the action of downloading images will not slow the application - Now it looks like the web page froze for several seconds.
After downloading the images I show message with ViewFlipper.
How can I fulfilling this?
Thank's
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想在后台执行一些下载图像过程时更新 UI 线程,那么你应该使用 AsyncTask
可以在这里找到 AsyncTask 的完整参考
http://developer.android.com/reference/android/os/AsyncTask.html
if you want to do something like updating UI thread while doing some downloading image process in background then you should use AsyncTask
a complete refrence to AsyncTask can be found here
http://developer.android.com/reference/android/os/AsyncTask.html