FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AndroidTutorialForBeginners/SharedPreferences.java at master · Progzizo/AndroidTutorialForBeginners · GitHub
Progzizo
/
AndroidTutorialForBeginners
Public
forked from
hussien89aa/AndroidTutorialForBeginners
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AndroidTutorialForBeginners
/
SharedPreferences.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (17 loc) · 643 Bytes
Breadcrumbs
AndroidTutorialForBeginners
/
SharedPreferences.java
Copy path
File metadata and controls
21 lines (17 loc) · 643 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
;
}
}
Back
|
FazBrowse Home
|
New Git URL