I need to show the image from url but my code does not work I try this:
File file = new File(imagePathFromServer);
Uri uri = Uri.fromFile(file);
((ImageView) dialog.findViewById(R.id.image)).setImageURI(uri);
How to show it? The imagePathFromServer
is correct (I can open it in browser)