Re: [android-developers] BitmapFactory 's decodeByteArray and decodeStream returns null

2011-09-15 Thread Óscar de la Mata
HI Siji. Have you tried this aproach? public void convert(){ ByteArrayInputStream imageStream = new ByteArrayInputStream(data); Bitmap theImage = BitmapFactory.decodeStream(imageStream); try { File file = FotoFolder.getFotoFile(fileName.png);

Re: [android-developers] Re: word wrapping

2011-09-14 Thread Óscar de la Mata
Hi Kenny. Do you mean Soft Wrap? If so. Go to: Main menu Eclipse Preferences Java Code Style Formatter Edit (Active Profile) Line wrapping (tab) And config here your wrap preferences. Saludos! 2011/9/13 Kenny Riddile kfridd...@gmail.com On 9/13/2011 4:38 PM, Tor Norbye wrote: He's