Android每隔30秒从网址加载图片

时间:2012-03-22 01:34:17

标签: android android-activity

我发现很难在android imageview中每隔30秒从url加载图片,这个效果性能问题。我无法对该android-activity执行任何其他按钮点击操作,因为继续图像加载。我怎样才能改进性能?是否有办法在后台执行此操作?

1 个答案:

答案 0 :(得分:1)

我会使用AsyncTask。从doInBackground中的网址执行图片加载,然后在onPostExecute中更新您的ImageView。