Added volume control

This commit is contained in:
hyb1996
2017-02-17 11:38:24 +08:00
parent 8993079151
commit 40d6285bed
30 changed files with 309 additions and 78 deletions

View File

@@ -32,7 +32,15 @@ public class Pref {
return getDisposableBoolean("isFirstGoToAccessibilitySetting", true);
}
public static int oldVersion(){
public static int oldVersion() {
return 0;
}
public static boolean isRecordVolumeControlEnable() {
return def().getBoolean(getString(R.string.key_use_volume_control_record), false);
}
private static String getString(int id) {
return App.getApp().getString(id);
}
}