0
When we use Sharedpreferences, we have for example:
SharedPreferences prefencias = getSharedPreferences(nome, modo);
Where "name" is the name of the preference and "mode" indicates the permission that can be:
MODE_PRIVATE
MODE_WORLD_REABLE
MODE_WORLD_WRITE_WRITEABLE
What does each of these modes of access mean? How to use them properly? In what situations?