Да, это возможно. В контексте есть метод с именем getSharedPreferences (String name, int mode)
Извлечение и хранение содержимого файла настроек «name», возвращая SharedPreferences, с помощью которого вы можете извлекать и изменять его значения. Только один экземпляр объекта SharedPreferences возвращается любым абонентам с тем же именем, что означает, что они увидят изменения друг друга, как только они будут сделаны.
Parameters
name Desired preferences file. If a preferences file by this name does not exist, it will be created when you retrieve an editor (SharedPreferences.edit()) and then commit changes (Editor.commit()).
mode Operating mode. Use 0 or MODE_PRIVATE for the default operation, MODE_WORLD_READABLE and MODE_WORLD_WRITEABLE to control permissions.
Returns
Returns the single SharedPreferences instance that can be used to retrieve and modify the preference values.