我是新来的Android编程和我开发android的应用程序在我的应用程序中打开从服务器的PDF文件。 我有没有关于这一想法。 所以,请帮助我。 我怎样才能做到这一点?
提前致谢。
我是新来的Android编程和我开发android的应用程序在我的应用程序中打开从服务器的PDF文件。 我有没有关于这一想法。 所以,请帮助我。 我怎样才能做到这一点?
提前致谢。
你必须尝试在应用程序中打开PDF文件时该代码..
WebView webView = (WebView) findViewById(R.id.my_webview);
webView.setWebViewClient(new MyWebViewClient());
webView.addView(webView.getZoomControls());
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://docs.google.com/gview?embedded=true&url=http://myurl.com/demo.pdf");
String pdf = "http://www.xyzwebsite.com/yourfile.pdf"; //YOUR URL TO PDF
String googleDocsUrl = "http://docs.google.com/viewer?url="+ pdfurl;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(googleDocsUrl ), "text/html");
startActivity(intent);
添加此权限清单文件
<uses-permission android:name="android.permission.INTERNET" >
File file = new File("/sdcard/example.pdf");
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(OpenPdf.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
String pdf = "http://www.xyzwebsite.com/yourfile.pdf"; //YOUR URL TO PDF
String googleDocsUrl = "http://docs.google.com/viewer?url="+ pdfurl;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(googleDocsUrl ), "text/html");
startActivity(intent);
}
}
}