Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
290 views
in Technique[技术] by (71.8m points)

How to use shared preference data in different classes in android?

Using shared preferences I saved data in one of the activity Now I want to use that data in another activity how to do that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Create a sharedPreference where you want to add shared data. A little example of code like this:

SharedPreferences prefs = this.getSharedPreferences("CONSTANT_FILE_NAME",
                Context.MODE_PRIVATE);

SharedPreferences.Editor editor = prefs.edit();
                editor.putBoolean("isPaid", true);
                editor.commit();

And to retrieve that shared data use this code:

SharedPreferences prefs = this.getSharedPreferences("CONSTANT_FILE_NAME",
                    Context.MODE_PRIVATE);
prefs.getBoolean("isPaid",false); 

Read this from developer site: click here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...