i want to set image in imageview with URL
i am converting server image to bitmap then putting it on imageview in my listview adapter used in a BaseAdapter
try {
Log.d("AdapterGetView", "threadAvatarURL = " + threadAvatarURL);
URL url = new URL(Config.HOST_NAME +threadAvatarURL);
Bitmap image = BitmapFactory.decodeStream(url.openConnection().getInputStream());
holder.profileImage.setImageBitmap(image);
} catch (Exception e) {
//txtUrl.setText("Error: Exception");
}