We are trying to allow our users to download / display PDF files in a web application (WebView)
The HTML is a simple
<iframe src="path/to/pdf" />
In a standard android browser everything works - when clicking the link, the browser is allowing either display the PDF, or download... (content-type is application/pdf)
When using the webview we do not get the same results - a blank page is showing, (maybe a new tab is not opening correctly?!)
Note - We cannot use Google Viewer - the PDF is in a user restricted area (a session is required) - and so we cannot provide a public link to the PDF, which is required for google viewer to work.
How can we make the webview work just like the regular browser?