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

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

$
0
0

Using Android Annotations is an option. It will allow you to simply run any method in a background thread:

// normal methodprivate void normal() {    doSomething(); // do something in background}@Backgroundprotected void doSomething()     // run your networking code here}

Note, that although it provides benefits of simplicity and readability, it has its disadvantages.


Viewing all articles
Browse latest Browse all 191


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