Android - android.os.NetworkOnMainThreadException

后端 未结 8 1189
迷失自我
迷失自我 2020-11-22 08:15

I have this exception and I was reading a thread on this, and it seemed confusing:

How to fix android.os.NetworkOnMainThreadException?

I already added this l

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 09:01

    You made network call on main thread which is against to android rules, so you have to do your network call on separate thread like asynctask or handler etc.

提交回复
热议问题