forked from hussien89aa/AndroidTutorialForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharedPreferences.java
More file actions
21 lines (17 loc) · 643 Bytes
/
SharedPreferences.java
File metadata and controls
21 lines (17 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class SharedRef {
SharedPreferences ShredRef;
public SharedRef(Context context){
ShredRef=context.getSharedPreferences("myRef",Context.MODE_PRIVATE);
}
public void SaveData(String UserName,String Password){
SharedPreferences.Editor editor=ShredRef.edit();
editor.putString("UserName",UserName);
editor.putString("Password",Password);
editor.commit();
}
public String LoadData(){
String FileContent="UserName:"+ShredRef.getString("UserName","No name");
FileContent+=",Password:"+ShredRef.getString("Password","No Password");
return FileContent;
}
}