Sorry to be posting but I can't see my posts on the group page: This is the
code that is giving me trouble:
try{
URL url = new
URL("http://en.wikipedia.org/wiki/File:Polar_Bear_-_Alaska.jpg");
HttpURLConnection connection = (HttpURLConnection)
url.openConnection();
InputStream is = connection.getInputStream();
Bitmap img = BitmapFactory.decodeStream(is);
animalPhoto.setImageBitmap(img );
}catch(Exception e){
Toast.makeText(this,"IO Exception", Toast.LENGTH_LONG).show();
}
But when i run my app, no picture is shown and my catch message shows...
Not sure what is going on.
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en