我想通过网址在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);
答案 0 :(得分:0)
我注意到,如果您直接点击下面的网址,
它会重定向到您首选的页面。
这意味着 docs.google.com (嵌入式网址)不允许使用名为page / pagenumber的参数。