Im currently using Google Drive REST API in order to create folder/files in my Drive.
However i would like to know how could i use the rest api to display an image from Drive in my app ? Is that even possible ?
iv = (ImageView) myFragmentView.findViewById(R.id.imageView1);
iv.setImageURI(Uri.parse("https://drive.google.com/uc?export=view&id={fileid}"));
This doesnt work i have nothing displayed on my screen.