摘要:
很早就知道Android4.0以后,要把耗时的网络操作放在多线程中,处理方法有:1)setContentView(R.layout.activity_main)下面加上如下代码if (android.os.Build.VERSION.SDK_INT > 9) { StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy);}2)大多数人还是比较喜欢这种方式(new thread + hand... 阅读全文