Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用处理程序来处理解压缩任务handler.post(new Decompress()),我已经为这个处理程序保留了一个循环器。任务完成后如何通知我们?
handler.post(new Decompress())
如果您想在 UI 线程中收到通知,那么我会在 UI 线程中创建另一个Handler对象,并在执行解压缩任务的线程中保留对它的引用。任务完成后,您只需Message使用它的Handler.
Handler
Message
但最方便的方法是使用AsyncTask
AsyncTask