2013年3月30日

android.os.NetworkOnMainThreadException

摘要: 在android 2.3上设计的下载程序,在android 4.0上运行时报android.os.NetworkOnMainThreadException异常,原来在4.0中,访问网络不能在主程序中进行,有两个方法可以解决,一个是在主程序中增加:Java代码 // 详见StrictMode文档 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder() .detectDiskReads() .detectDiskWrites() .detectNetwork() // or .detectAll() for all ... 阅读全文

posted @ 2013-03-30 00:19 疯狂的石头陈 阅读(280) 评论(0) 推荐(0)

导航