我在 AsyncTask.doInBackground() 方法中调用 AccountManager.getAccountsByType()。但它至少有时会导致这种 StrictModeViolation:
android.os.StrictMode$StrictModeViolation: policy=95 violation=2
at android.os.StrictMode.executeDeathPenalty(StrictMode.java:1379)
at android.os.StrictMode.access$1300(StrictMode.java:118)
at android.os.StrictMode$AndroidBlockGuardPolicy.handleViolation(StrictMode.java:1372)
at android.os.StrictMode$AndroidBlockGuardPolicy$1.run(StrictMode.java:1254)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
但是 AsyncTask.doInBackground() 确实是可以调用 AccountManager 方法的地方吗?
这就是我启用 StrictMode 的方式:
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectAll()
.penaltyLog()
.penaltyDeath()
.build());
StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
.detectAll()
.penaltyLog()
.penaltyDeath()
.build());
顺便说一句,我知道 AccountManager 文档在许多方法上都说“从主线程调用这个方法是安全的”,但显然这是错误的常识,我已经通过移动 AccountManager 的使用避免了其他几个 StrictModeViolations进入异步任务。