我正在开发一个应用程序,主要组件是显示 pdf 。我已经使用了 plugpdf库,主要活动中包含以下代码:
try{
// Initialize PlugPDF with a license key.
PlugPDF.init(getApplicationContext(),
"my license key here, censored for obvious reasons");
} catch (PlugPDFException.InvalidLicense ex) {
Log.e("PlugPDF", "error ", ex);
// Handle invalid license exceptions.
}
SimpleDocumentReader v = SimpleReaderFactory.createSimpleViewer(this, null);
v.openUrl(link, "123456");
所以基本上,我在主要活动中开展一项活动。 Here's how it looks like.
这个问题是,simpledocumentreader(pdf viewer的活动)是主要活动的“顶部”,这意味着,如果我点击导航抽屉图标,我什么都看不到。
Here's how it is supposed to look like. (The pdf should be still visible in the background)
所以,基本上我需要实现将导航抽屉放在SimpleDocumentReader的“顶部”。奇怪的是,我首先创建了pdf阅读器视图,然后是导航抽屉片段,然后,pdf显示在导航抽屉的顶部。 那么,问题是,如何?