i have an application that uploads and get an image from parse.com
and i have got android.os.NetworkOnMainThreadException can anyone help me with it and tell me how to solve it?
Thanks
final ParseFile fileObject = (ParseFile) parseObject.get("ImageFile");
URL url = new URL(fileObject.getUrl());
Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
imageView.setImageBitmap(bmp);
linearLayout.addView(imageView);