Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 android 开发非常陌生.......我已经搜索了堆栈溢出档案,但似乎没有什么对我有用....我只需要一个应用程序来读取 android 中的 PDF 文件点击按钮。 ... - 只读取 PDF(不写入或转换或任何东西)
请如果有人可以指导我正确的方向以及获取哪个库.......使用了itext但它不起作用.......应用程序崩溃了
Document document = new Document();
任何帮助将不胜感激.....谢谢
WebView您可以使用like阅读 pdf 文件
WebView
mWebView.loadUrl("https://docs.google.com/gview?embedded=true&url="+ webUrl);
您必须使用隐式意图,将 PDF 文件路径放在 URL 中并使用 ACTION_VIEW 的意图启动它,它将使用默认的 PDF 应用程序启动。