With the release of Gingerbread, I have been experimenting with some of the new API's, one of them being StrictMode (http://developer.android.com/reference/android/os/StrictMode.html)
I noticed that one of the warnings is for getSharedPreferences.
This is the warning:
StrictMode policy violation; ~duration=1949 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=23 violation=2
and it's being given for a getSharedPreferences call being made on the UI Thread.
Should SharedPreferences access and changes really be made off the UI Thread?