0

我想使用 android 意图打开托管在远程服务器(pdf 类型)上的文件。这是我目前打开本地文件的代码:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(<local_path>));
intent.setType("application/pdf");
PackageManager pm = getPackageManager();
List<ResolveInfo> activities = pm.queryIntentActivities(intent, 0);
if (activities.size() > 0) {
    startActivity(intent);
}

如何更改它以打开远程 pdf 文件?

4

1 回答 1

1

您可以使用以下代码。请在网址中进行必要的更改

Intent i=new Intent(Intent.ACTION_VIEW);
String link="http://docs.google.com/gview?embedded=true&url=" + "http://www.yoursite.com/downloads/yourpdf.pdf";
i.setData(Uri.parse(link));
startActivity(i);
于 2013-10-15T13:26:28.133 回答