[android-developers] Download Expansion File

2013-02-06 Thread Michel Cabillot
I've tried to implement expansion file to my application according to the Android Developer's guide, but I've got some erros while copying their code : boolean expansionFilesDelivered() { > for (XAPKFile xf : xAPKS) {

[android-developers] Expansion File

2013-02-19 Thread Michel Cabillot
Hello, I would simply like to know if there is some sample project to implement an Expansion File into an Android App > 50mo. I've tried to read the Developer's guide, but as a newbie, I've been really quickly lost. Thanks for your help ! -- -- You received this message because you are subsc

[android-developers] Re: APK expansion file uploader problem/question

2013-02-21 Thread Michel Cabillot
Hello, I'm also trying to implement an Expansion File to my app, did you manage to do that ? Thanks. Le lundi 6 août 2012 02:49:01 UTC+2, hdxpete a écrit : > > Is anyone using this apk expansion file technology? Am i asking the > question in the correct group? > > On Friday, August 3, 2012 3:5

[android-developers] Display an Integer[] who's inside an ArrayList

2012-10-16 Thread Michel Cabillot
I have an arraylist with some Integer[] inside and I want to display elements of my Integer[] into a ViewFlipper. I have the function which works if you include directly an Integer[] : View addImageView(int resId) { ImageView iv = new ImageView(this); iv.setImageResource(resId); return iv;

[android-developers] Bitmap Display

2012-10-23 Thread Michel Cabillot
Hello, I want to make a slideshow with 50 images, I've tried to use a viewFlipper to display them, but i ran out of memory. I've tried to follow the Android Developer's tutorial, but I did not succeed to modify it to u