i want to display images stored in my dropbox via a webview. when i try to load the url given from dropbox i only get the dropbox layout and the name of the image in the center , is there a way to do this? If no , how can i display images stored in a cloud like Google Drive in my app?I cannot store them all in the app because of their size.Thanks in advance!
My code
WebView webView = (WebView) view.findViewById(R.id.catalogImageSlide);
webView.loadUrl(null);
//webView.loadUrl("file:///android_res/drawable/"+getArguments().getString("img"));
webView.loadUrl("https://www.dropbox.com/s/ftd2x383ps8kbrd/046.jpg");
webView.getSettings().setBuiltInZoomControls(true);
webView.getSettings().setSupportZoom(true);
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);