Network Operation은 Asynctask를 사용하세요.
AsycnTask -
If you want to do some Network operation
or anything that blocks your UI in that case AsyncTask is best options. There are several other ways for performing the same Background Operations as you can use Service
, IntentService
also for doing Background Operations. Using AsyncTask will help you doing your UI work and also won't block your UI until your background Operation is going on.