我找了一個很好的PDF查看器的PhoneGap(甚至可以是一個爲$$),以縮略圖的行動等PDF瀏覽器插件,PhoneGap的
到目前爲止,我使用的是缺乏功能childbrowser插件。
有人知道一些pluginx /套件/例子嗎?
感謝
我找了一個很好的PDF查看器的PhoneGap(甚至可以是一個爲$$),以縮略圖的行動等PDF瀏覽器插件,PhoneGap的
到目前爲止,我使用的是缺乏功能childbrowser插件。
有人知道一些pluginx /套件/例子嗎?
感謝
我已經發現了兩個選項:
n Android,您可以使用Android Intents查看pdf。這會向您顯示手機中可用的所有pdf查看器。您可以選擇任何和查看PDF
如:
private void showPdfAndroid(String url) throws IOException {
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File(url);
String extension = url.substring(url.lastIndexOf(".")+1);
String type = "";
if (extension.toLowerCase().equals("pdf")) {
type = "application/pdf";
Log.d("application/pdf", "application/pdf");
}
intent.setDataAndType(Uri.fromFile(file), type);
cordova.getActivity().startActivity(intent);
Log.d("FileViewerPlugin", "View complete in" + url);
}