美文网首页
Caused by: android.os.NetworkOnM

Caused by: android.os.NetworkOnM

作者: Victory_IT | 来源:发表于2016-11-22 01:48 被阅读0次

Caused by: android.os.NetworkOnMainThreadException错误,在对应的MainActivity.javasetContentView(R.layout.activity_main)后加入以下代码:

if(android.os.Build.VERSION.SDK_INT>9){StrictMode.ThreadPolicypolicy=newStrictMode.ThreadPolicy.Builder().permitAll().build();StrictMode.setThreadPolicy(policy);}

并在文件头加入,import android.os.StrictMode

问题就解决了。

相关文章

网友评论

      本文标题:Caused by: android.os.NetworkOnM

      本文链接:https://www.haomeiwen.com/subject/wplppttx.html