Вы должны получить SharedPreferences :
//in the main activity you should set the default values in case user has never entered the preferences screen
PreferenceManager.setDefaultValues(this, R.xml.preferences_file, false);
preferences = PreferenceManager.getDefaultSharedPreferences(this);
и затем прочитать значение:
preferences.getBoolean("muteSound", true) //the second argument is the default value