Saving and retrieving of data is one of the fundamental part of an android application. In android you can save your data by using any one of the following ways. 1. Using shared preferences 2. Save into files. 3. Save into SD card. 4. Save as static data. 5. Save into sqlite database. Using the SharedPreferences is the easiest way of saving data in android. Here data is saved using key-value pair. This method is suitable for saving small amount of information such as login details, password's etc. Learn More about SharedPreferences You can also save your data into a file in your phone memory. You can use this method of saving for those applications which closely work with the android OS. This is a better method of saving but the application fails to install or to save data when the device internal memory is too low. Learn more about Save data int...
Computer Programming Video Tutorials