天天看點

android2.3新增API StrictMode介紹

Application Not Responding)視窗的出現。

啟用StrictMode 

推薦的使用StrictMode的方式是,在開發階段,打開它,在釋出應用前,關閉它。 

例如:在你的應用中,onCreate():

public void
  
if
new StrictMode.ThreadPolicy.Builder() //構造StrictMode
  
//當發生磁盤讀操作時輸出
  
//當發生磁盤寫操作時輸出
  
//通路網絡時輸出,這裡可以替換為detectAll() 就包括了磁盤讀寫和網絡I/O
  
//以日志的方式輸出
  
               .build());  
  
new
  
//探測SQLite資料庫操作
  
//以日志的方式輸出
  
               .penaltyDeath()  
  
               .build());  
  
   }  
  
super.onCreate();      

當觸發政策中的操作時系統會列印出一條StrictMode日志,格式如下:

  1. 02-27 10:03:56.122: DEBUG/StrictMode(16210): StrictMode policy violation; ~duration=696 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=23 violation=2
  2. 02 02-27 10:03:56.122: DEBUG/StrictMode(16210):     at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:745)    

 另外說明兩點:

1.在android2.3版本直接在ui線程中通路網絡會報錯