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
Latest commit
21 lines (17 loc) · 643 Bytes
/
Copy pathSharedPreferences.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
publicclassSharedRef {
SharedPreferencesShredRef;
publicSharedRef(Contextcontext){
ShredRef=context.getSharedPreferences("myRef",Context.MODE_PRIVATE);
}
publicvoidSaveData(StringUserName,StringPassword){
SharedPreferences.Editoreditor=ShredRef.edit();
editor.putString("UserName",UserName);
editor.putString("Password",Password);
editor.commit();
}
publicStringLoadData(){
StringFileContent="UserName:"+ShredRef.getString("UserName","No name");
FileContent+=",Password:"+ShredRef.getString("Password","No Password");
returnFileContent;
}
}