blob: 755b4a2657f8bceab02c74f37039dd39f93e9eab (
plain)
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
|
package de.pixart.messenger.utils;
import android.content.Context;
import android.content.SharedPreferences;
import static android.content.Context.MODE_PRIVATE;
public class FirstStartManager {
Context context;
private SharedPreferences pref;
private SharedPreferences.Editor editor;
private static final String PREF_NAME = "de.pixart.messenger";
private static final String IS_FIRST_TIME_LAUNCH = "IsFirstTimeLaunch";
public FirstStartManager(Context context) {
this.context = context;
pref = this.context.getSharedPreferences(PREF_NAME, MODE_PRIVATE);
editor = pref.edit();
}
public void setFirstTimeLaunch(boolean isFirstTime) {
editor = pref.edit();
editor.putBoolean(IS_FIRST_TIME_LAUNCH, isFirstTime);
editor.commit();
}
public boolean isFirstTimeLaunch() {
return pref.getBoolean(IS_FIRST_TIME_LAUNCH, true);
}
}
|