Issue
How do you use an image referenced by URL in an ImageView
?
Solution
Anyway people ask my comment to post it as answer. i am posting.
URL newurl = new URL(photo_url_str);
mIcon_val = BitmapFactory.decodeStream(newurl.openConnection().getInputStream());
profile_photo.setImageBitmap(mIcon_val);
Answered By - Praveen
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.