Move advanced info into own activity

This commit is contained in:
Dominik Schürmann
2014-10-26 02:16:39 +02:00
parent 3059007995
commit be3e6ae6ef
12 changed files with 332 additions and 345 deletions

View File

@@ -157,16 +157,6 @@ public class Preferences {
editor.commit();
}
public boolean getShowAdvancedTabs() {
return mSharedPreferences.getBoolean(Pref.SHOW_ADVANCED_TABS, false);
}
public void setShowAdvancedTabs(boolean value) {
SharedPreferences.Editor editor = mSharedPreferences.edit();
editor.putBoolean(Pref.SHOW_ADVANCED_TABS, value);
editor.commit();
}
public boolean getCachedConsolidate() {
return mSharedPreferences.getBoolean(Pref.CACHED_CONSOLIDATE, false);
}