【发布时间】:2013-05-06 19:30:12
【问题描述】:
以下是我的布局:
<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 新手,这不是作业。
【问题讨论】:
标签: android progress-bar android-progressbar