Android ProgressDialog的两种用法

Android中ProgressDialog的使用: http://skycode.iteye.com/blog/346960
Android中ProgressDialog的简单示例: http://lveyo.iteye.com/blog/585771
Android ProgressDialog的两种用法: http://www.pocketdigi.com/20110510/271.html

在android中,通常我们无法在单独的线程中更新UI,而要在主线程中,这也就是为什么我们要使用 Handler了,当handler收到消息中,它会把它放入到队列中等待执行,通常来说这会很快被执行。

你可能感兴趣的:(ProgressDialog)