This commit is contained in:
chschtsch 2016-01-05 23:13:52 +03:00
parent fd4459e570
commit f89d405226

View file

@ -245,13 +245,13 @@ public class SettingsActivity extends PreferenceActivity {
} }
public static void initSettings(Context context) { public static void initSettings(Context context) {
PreferenceManager.setDefaultValues(context, R.xml.settings_screen, false); PreferenceManager.setDefaultValues(context, R.xml.settings, false);
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context); SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
if(sp.getString(context.getString(R.string.downloadPathPreference), "").isEmpty()){ if(sp.getString(context.getString(R.string.download_path_key), "").isEmpty()){
SharedPreferences.Editor spEditor = sp.edit(); SharedPreferences.Editor spEditor = sp.edit();
String newPipeDownloadStorage = String newPipeDownloadStorage =
Environment.getExternalStorageDirectory().getAbsolutePath() + "/NewPipe"; Environment.getExternalStorageDirectory().getAbsolutePath() + "/NewPipe";
spEditor.putString(context.getString(R.string.downloadPathPreference) spEditor.putString(context.getString(R.string.download_path_key)
, newPipeDownloadStorage); , newPipeDownloadStorage);
spEditor.apply(); spEditor.apply();
} }