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 活动中进行服务调用时,我看到一个android.os.NetworkOnMainThreadException. 为什么?
android.os.NetworkOnMainThreadException
您应该从后台线程执行任何服务调用。在 UI(或主)线程上,不允许您进行这种耗时的操作。例如,请参阅AsyncTask 文档和用法。
AsyncTask