Android.os.networkonmainthreadexception Manifest
In the below code I got an error when running my android project for RssReader. My main file: public class Earthquake extends Activity { ListView earthquakeListView; ArrayA
Solution 1:
This exception is thrown when an application attempts to perform a networking operation on its main thread. Run your code in AsyncTask
.
see : http://www.androiddesignpatterns.com/2012/06/app-force-close-honeycomb-ics.html
Post a Comment for "Android.os.networkonmainthreadexception Manifest"