0

我已经在这个主题上进行了很多搜索,但我无法找到正确的答案。我恳请不要在没有答案的情况下用重复标记它。

我的 android 应用程序中有两个活动。

1]。单击任何该文件开始下载并显示进度条,直到下载完成,服务器上可用的 PDF 文件列表。下载完成后弹出两个按钮[查看]或[取消]打开。单击查看打开第二个活动,将 pdf 文件路径作为参数传递。

2]。在第二个活动中,我只想打开在我的应用程序活动中有意传递的 PDF 文件。

我不想使用任何浏览器、驱动器、文件管理器或任何外部安卓应用程序。

我该如何实现这一点,请为我提供适当的解决方案。先感谢您 :)

4

1 回答 1

2

将文件名从 FirstActivity 发送到 SecondActivity。

Intent i=new Intent(FirstActivity.this, SecondActivity.class);
 i.putExtra("file", fileUrl);
 startActivity(i);

在SeconActivity中,使用WebView

编辑

Intent i = getIntent();
    String myPdfUrl = i.getStringExtra("file");
    String url = "http://docs.google.com/gview?embedded=true&url=" + myPdfUrl;
    String doc="<iframe src='"+url+"' width='100%' height='100%' style='border: none;'></iframe>";
    WebView web=(WebView)findViewById(R.id.webViewpdf);
    webView.getSettings().setJavaScriptEnabled(true); 
    webView.loadData(doc, "text/html", "UTF-8");

布局.xml

<LinearLayout 
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent">

    <WebView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/webViewpdf"/>

</LinearLayout>
于 2016-07-07T11:28:43.243 回答