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.
我需要在 UI 上显示到期日期的倒计时。
我得到了一个新的 Runnable() 的倒计时但是我如何保持 TextView 的刷新?
还有其他建议来实施吗?
谢谢
我认为您必须实现所需的最佳方法之一是使用 AsyncTask (请参阅无痛线程:http ://android-developers.blogspot.com/2009/05/painless-threading.html 。
然后,您可以使用 AsyncTask 中的 onProgressUpdate 方法来更新您的 UI 线程。
查看从计时器更新 UI
当满足更新条件时,您还可以向主线程发送广播。