Is there any easy way to see everything I have inside my SharedPreferences
?
Something like:
SharedPreferences prefs = this.getSharedPreferences( "user_access", Context.MODE_PRIVATE);
Log.i("SharedPreferences", prefs);
Update
With the help of @Piovezan I was able to use the following code:
SharedPreferences prefs = this.getSharedPreferences( "user_access", Context.MODE_PRIVATE);
Map<String, ?> prefs_map = prefs.getAll();
Log.i("debug", prefs_map.toString());