Created
August 1, 2013 19:32
-
-
Save benlieb/6134480 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
downloaded_data.edit().putInt(position+"", percent); | |
downloaded_data.edit().commit(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SharedPreferences.Editor editable_downloaded_data = downloaded_data.edit(); | |
editable_downloaded_data.putInt(position+"", percent); | |
editable_downloaded_data.commit(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment