如何在远程PDF中打开特定页面?

时间:2017-11-21 07:28:24

标签: android pdf

我想通过网址在pdf中打开特定页面。所以我必须使用下面的代码,但它不起作用。

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(
            "http://docs.google.com/gview?embedded=true&url=www.yourpdf.com#page=8"
                .replaceAll(" ", "%20")));
        Log.e("intent", "" + browserIntent);
startActivity(browserIntent);

1 个答案:

答案 0 :(得分:0)

我注意到,如果您直接点击下面的网址,

  

https://chinesevoicebot.azurewebsites.net/HUAWEI%20Mate%209%20User%20Guide(MHA-L09_MHA-L29_01_English_Normal).pdf#page=100

它会重定向到您首选的页面。

这意味着 docs.google.com (嵌入式网址)不允许使用名为page / pagenumber的参数。