There is an application, in which I have to take data through JSON and use this data in different parts of my application. What is the best way to do this? I mean, it doesn’t seem efficient to me, – to pud data in bundle and then add extras from bundle to different intents. Is there something like shared preferences, but only for my app, so from every place within application I can retrieve the data I need, but this data is not visible to other applications? Thanks!
There is an application, in which I have to take data through JSON and
Share
You can use sqlite database, files or Shared preferences, Look at this Android – Data storage or try this Tutorial.