You can not call network on the main thread or UI thread. On Android if you want to call network there are two options -
- Call asynctask, which will run one background thread to handle the network operation.
- You can create your own runnable thread to handle the network operation.
Personally I prefer asynctask. For further information you can refer this link.