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.
我正在使用发出同步请求的地理编码器。我还在另一个线程上向另一个服务发出异步请求。我需要这两个结果才能继续我的 android 应用程序的下一步。在继续之前确保返回两个结果的正确方法是什么?
您可以将同步请求放在 AsyncTask 的 doInBackground() 方法中。并在 postExecute() 中处理结果。
只是想知道:您的同步请求不会冻结 UI 线程?