-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.java
85 lines (67 loc) · 2.54 KB
/
Settings.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import java.util.Set;
class Settings extends Activity {
/*====================================================================================================
* Variables
* ==================================================================================================*/
public static final String PREFS_NAME = "Settings";
SharedPreferences settings;
SharedPreferences.Editor editor;
/*====================================================================================================
* Initiate
* ==================================================================================================*/
Settings(Context context) {
settings = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
editor = settings.edit();
}
/*====================================================================================================
* Get
* ==================================================================================================*/
public Boolean getBool(String id) {
return settings.getBoolean(id, false);
}
public Float getFloat(String id) {
return settings.getFloat(id, 0);
}
public int getInt(String id) {
return settings.getInt(id, 0);
}
public Long getLong(String id) {
return settings.getLong(id, 0);
}
public String getString(String id) {
return settings.getString(id, "");
}
public Set<String> getStringSet(String id) {
return settings.getStringSet(id, null);
}
/*====================================================================================================
* Set
* ==================================================================================================*/
public void setBool(String id, Boolean val) {
editor.putBoolean(id, val);
editor.commit();
}
public void setFloat(String id, Float val) {
editor.putFloat(id, val);
editor.commit();
}
public void setInt(String id, int val) {
editor.putInt(id, val);
editor.commit();
}
public void setLong(String id, Long val) {
editor.putLong(id, val);
editor.commit();
}
public void setString(String id, String val) {
editor.putString(id, val);
editor.commit();
}
public void setStringSet(String id, Set<String> val) {
editor.putStringSet(id, val);
editor.commit();
}
}