I am trying to create a list of certaing objects, so i can see it anytime and anywhere. So i was wondering if there is any way to have some information in an Android activity, and sees it in the other activities just like the Session[] in asp.net.
Share
You can use Android Shared Preferences
SharedPreferences prefs =
getSharedPreferences(“myPreferences”,Context.MODE_PRIVATE);
And to get the data use this: