[android-developers] Re: how can i put 15MB images in my App?

2009-06-10 Thread Jonathan W
Hi, I have the same question as below. I'd like my app to prompt the user to download a package of 500 png images upon first load. These images would be stored on the SD card (and ideally encrypted), but accessed by the heard of the application which would be stored in main memory. Can anyone

[android-developers] Re: how can i put 15MB images in my App?

2009-06-10 Thread Jonathan W
I've got the same question. On first load, I want to download images to SD card for use later. Any suggestions? On May 29, 7:57 am, zeeshan genx...@gmail.com wrote: i think download option would be the better solution. i need to download in a bunch like 50 images on next click. i only have

[android-developers] Re: how can i put 15MB images in my App?

2009-06-10 Thread Robert Green
onStart { boolean hasAllImages = checkSDForImages(); if (!hasAllImages) { startProgress(Please wait, downloading app data); downloadMissingImages(); endProgress(); } } The idea here is that checkSDForImages is a quick scan of the file system to make sure all 500 images are

[android-developers] Re: how can i put 15MB images in my App?

2009-05-29 Thread zeeshan
i think download option would be the better solution. i need to download in a bunch like 50 images on next click. i only have idea to take image and display with fowllowing approach: private static Bitmap getImageBitmap(String url) { Bitmap bm = null; try { URL aURL

[android-developers] Re: how can i put 15MB images in my App?

2009-05-21 Thread Dianne Hackborn
You can put them in your .apk without restriction, just don't load them all at the same time. On Thu, May 21, 2009 at 7:59 AM, zeeshan genx...@gmail.com wrote: Hi, i am afraid if Max space for android App is 14MB , how can i put 15MB images in my App. my application includes more than 500

[android-developers] Re: how can i put 15MB images in my App?

2009-05-21 Thread Streets Of Boston
There may be no restriction on any apk, but i wouldn't put them all in one apk anyway. Giving the fact that you can only install your app on phone-memory (not on your SD-card), it's likely that users see the more than 15MByte size of your app and decide not to install/buy it. Is downloading

[android-developers] Re: how can i put 15MB images in my App?

2009-05-21 Thread Mike Hearn
You can encrypt the files on the sdcard. Just be aware that using the sdcard carries with it some taxes, eg, you have to handle it being taken out whilst in use On May 21, 4:59 pm, zeeshan genx...@gmail.com wrote: Hi, i am afraid if Max space for android App is 14MB , how can i put 15MB