//---you need this to prevent the webview from
// launching another browser when a url
// redirection occurs-—
webView.setWebViewClient(new Callback());
String pdfURL = "http://www.1kurs.pdf";
webView.loadUrl(
"http://docs.google.com/gview?embedded=true&url=" + pdfURL);
setContentView(webView);
}