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

Categories

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

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

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...