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
| package com.ramesh.taskearnerexample;
import android.content.Context;
import android.content.SharedPreferences;
public class SharedPreferenceConfig {
private SharedPreferences sharedPreferences;
private Context context;
public SharedPreferenceConfig(Context context)
{
this.context = context;
sharedPreferences = context.getSharedPreferences(context.getResources().getString(R.string.login_preference),Context.MODE_PRIVATE);
}
public void writeLoginStatus(boolean status)
{
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean(context.getResources().getString(R.string.login_status_preference),status);
editor.commit();
}
public boolean readLoginStatus()
{
boolean status = false;
status = sharedPreferences.getBoolean(context.getResources().getString(R.string.login_status_preference),false);
return status;
}
}
|