0

以下是我的布局:

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ProgressBar
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center" /> 

    <ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>           
</FrameLayout>

我正在尝试根据 url 链接下载图像,然后在ImageView. 在图像准备好之前,ProgressBar显示在ImageView. 到目前为止,我的代码可以下载图像并将其显示在ImageView. 由于下载需要时间,因此在图像显示之前存在明显的延迟。谁能给我一些建议?我是 android 新手,这不是作业。

4

1 回答 1

0

您需要使用 AsyncTask ......这是一个很好的教程:

http://www.androidhive.info/2012/04/android-downloading-file-by-showing-progress-bar/

于 2013-05-06T19:42:49.433 回答