3

这是我的代码,其中显示来自共享链接的 pdf 文件。请告诉我为什么它显示空白屏幕

protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_wbview);
    mWebView=(WebView) findViewById(R.id.web_view);

    String weblink="https://dl.dropboxusercontent.com/u/107860028/Publishing%20an%20Application%20on%20Google%20Play.pdf";  
    mWebView.getSettings().setJavaScriptEnabled(true);
    mWebView.loadUrl(weblink);
    }
4

1 回答 1

1

WebView 无法打开 pdf 您需要使用 google doc 来查看 Pdf 或者您可以使用 Adob​​eReadr Pdf

      protected void onCreate(Bundle savedInstanceState) {
            // TODO Auto-generated method stub
            super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_wbview);
        mWebView=(WebView) findViewById(R.id.web_view);

        String weblink="https://dl.dropboxusercontent.com/u/107860028/Publishing%20an%20Application%20on%20Google%20Play.pdf"; 

        mWebView.getSettings().setJavaScriptEnabled(true);
       webview.loadUrl("http://docs.google.com/gview?embedded=true&url=+weblink");
        }
于 2013-08-16T12:56:47.790 回答