android 4.0下访问主进程访问网络和开启另外另外的线程

在android 2.3上设计的下载程序,在android 4.0上运行时报android.os.NetworkOnMainThreadException异常,原来在4.0中,访问网络不能在主程序中进行,有两个方法能够解决,一个是在主程序中增长:

        // 详见StrictMode文档
        StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
                .detectDiskReads()
                .detectDiskWrites()
                .detectNetwork()   // or .detectAll() for all detectable problems
                .penaltyLog()
                .build());
        StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
                .detectLeakedSqlLiteObjects()
                .detectLeakedClosableObjects()
                .penaltyLog()
                .penaltyDeath()
                .build());

加上这句话以后 在onCreate方法上加@SuppressLint("NewApi") @Override

另外一种是启动线程执行下载任务:
android

    public void onCreate(Bundle savedInstanceState) { 网络

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        // 启动线程执行下载任务
        new Thread(download).start();
    }
   
    /**
     * 下载线程
     */
    Runnable download = new Runnable(){ ide

  @Override
       public void run() {

            Looper.prepare(); 

             download();

             Looper.loop(); 

      }
    }; oop

启动线程必定要加上Looper.prepare();方法完以后加上Lopper.loop(); 不然会报
ui

Can't create handler inside thread that has not called Looper.prepare() 这个异常
相关文章
相关标签/搜索