【发布时间】:2010-09-14 05:45:21
【问题描述】:
在我的 onCreate() 我做这个检查:
//
// check if we have a PDF viewer, else bad things happen
//
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
List<ResolveInfo> intents = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (intents == null || intents.size() == 0) {
// display message then...
finish();
}
在我的 HTC Desire 上,这不会返回匹配项,即使我有 Adobe 的 PDF 查看器。这个问题的答案android: open a pdf from my app using the built in pdf viewer 提到 Adobe 可能没有任何公共 Intent,因此上述检查显然不会返回任何内容。
任何人都可以验证您是否应该能够从意图启动 Acrobat,或者是否有其他方法或 PDF 查看器可以使用。
实际用例是下载发票副本并使用以下代码将它们存储在本地存储中:
URL url = new URL(data);
InputStream myInput = url.openConnection().getInputStream();
FileOutputStream fos = openFileOutput(fname, Context.MODE_WORLD_READABLE);
// transfer bytes from the input file to the output file
byte[] buffer = new byte[8192];
int length;
while ((length = myInput.read(buffer)) > 0) {
fos.write(buffer, 0, length);
progressDialog.setProgress(i++);
}
fos.close();
然后显示
// read from disk, and call intent
openFileInput(fname); // will throw FileNotFoundException
File dir = getFilesDir(); // where files are stored
File file = new File(dir, fname); // new file with our name
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(file));
intent.setType("application/pdf");
startActivity(intent);
【问题讨论】: