StrictMode

StrictMode用于检测磁盘读写以及网络访问。


在首个activity的onCreate()中加入

StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()

  .detectAll()

  .penaltyLog()

  .penaltyDialog() ////打印logcat,当然也可以定位到dropbox,通过文件保存相应的log

  .build());

  StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectAll()

  .penaltyLog()

  .build());


你可能感兴趣的:(StrictMode)