I am developing an application in which i am getting data through Json which includes text, images both. When user runs my application for the first time, data should be stored somewhere so that next time he/she can run the app without using internet. Can anybody suggest me any solution?
Share
Shared Preferences is the best option for you as it is permanent light-weight storage in android.An good example of shared preferences in android is to storing Highest score of game in your device.See here.