我正在尝试使用SharedPreferences为我的应用程序存储一些用户设置。我在Activity.onCreate方法中有这个代码:
sharedPreferences = context.getSharedPreferences("MMPreferences", 0);
soundOn = sharedPreferences.getBoolean("soundOn", true);
但它给了我这个错误(它是生成错误的getBoolean):
11-10 16:32:24.652: D/StrictMode(706): StrictMode policy violation; ~duration=229 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=2079 violation=2
,结果是没有读取该值,当我尝试使用此代码写入SharedPreferences时,我也得到相同的错误(它是生成错误的提交):
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean("soundOn", soundOn);
editor.commit();
我能找到的这个错误的唯一答案是关于严格模式警告,但我的代码实际上无法读取/写入SharedPreferences键/值数据。
答案 0 :(得分:16)
您必须在单独的线程上执行fileSystem操作,然后错误就会消失。
您也可以关闭StrictMode(但我不推荐)
StrictMode.ThreadPolicy old = StrictMode.getThreadPolicy();
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder(old)
.permitDiskWrites()
.build());
doCorrectStuffThatWritesToDisk();
StrictMode.setThreadPolicy(old);
答案 1 :(得分:3)
如果您在Android项目中配置了被动(RxJava),则可以利用其属性,例如在特定于I / O的计划程序上计划任务,例如:
public void saveFavorites(List<String> favorites) {
Schedulers.io().createWorker().schedule(() -> {
SharedPreferences.Editor editor = mSharedPreferences.edit();
Gson gson = new Gson();
String jsonFavorites = gson.toJson(favorites);
editor.putString(Constants.FAVORITE, jsonFavorites);
editor.apply();
});
}