How can I post load the images for my app after and only if the user wants when the app has been downloaded from the market?
I’ve seen post downloading done, just don’t know where to start.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to host the image files on a server.
In your app on the launch activity just do a file check for the required images in your private data directory.
If they are not present , then download them.
Make sure downloading is done in a background task with a dialog that enables you to cancel.
If they are large , consider adding the permission to keep the screen alive also.