Skip to content Skip to sidebar Skip to footer

Networkonmainthreadexception While I See If I Have Internet Connection

I am trying to check if my mobile device has internet access but I get the following error: 08-13 14:20:48.990: E/AndroidRuntime(2546): FATAL EXCEPTION: main 08-13 14:20:48.990: E/

Solution 1:

NetworkOnMainThreadException:

The exception that is thrown when an application attempts to perform a networking operation on its main thread.

so you need to Use Thread, runOnUiThread, AsyncTask , Handler , or HandlerThread for Updating UI elements from background Thread.

Solution 2:

You are trying to perform a networking operation on main thread, it's not allowed in Main UI Thread of Android Application.

Look at NetworkOnMainThreadException

To solve this either use AsyncTask or Thread and put your Network Related Operation in it.

Post a Comment for "Networkonmainthreadexception While I See If I Have Internet Connection"