NetworkOnMainThreadException When reading from web

前端 未结 3 928
北荒
北荒 2020-12-19 22:35

When i try to read single line of text from website i get error (NetworkOnMainThreadException). I tryed few thing but nothing works so far. So here is code if anyone could h

3条回答
  •  情书的邮戳
    2020-12-19 23:24

    You might want to do all your downloading using a AsyncTask, http://developer.android.com/reference/android/os/AsyncTask.html

    or if your on api 11+ a AsyncTaskLoader, http://developer.android.com/reference/android/content/AsyncTaskLoader.html

提交回复
热议问题