I'm trying to draw an image downloaded from the web but keep getting
the error "Cannot cast from Bitmap to byte[]". Here's the code
snippet:


        BufferedInputStream bis = new
BufferedInputStream(somethingdownloaded);
        DataInputStream dis = new DataInputStream(bis);
        Bitmap image;

        dis.read((byte[]) image); // "Error: cannot cast"

What am I doing wrong?
Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.

Reply via email to