Quantcast
Channel: How can I fix 'android.os.NetworkOnMainThreadException'? - Stack Overflow
Viewing all articles
Browse latest Browse all 191

Answer by henry4343 for How can I fix 'android.os.NetworkOnMainThreadException'?

$
0
0

Do the network actions on another thread.

For example:

new Thread(new Runnable(){    @Override    public void run() {        // Do network action in this function    }}).start();

And add this to file AndroidManifest.xml:

<uses-permission android:name="android.permission.INTERNET"/>

Viewing all articles
Browse latest Browse all 191

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>