在我的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可能没有任何公开意图,因此上述检查显然不会返回任何内容。
任何人都可以验证您是否应该从意图启动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);
答案 0 :(得分:6)
将手机连接到PC,启动Eclipse并打开LogCat。然后使用浏览器下载PDF文件并将其打开。你应该看到一条线(我用过HTC的愿望):
09-14 17:45:58.152:INFO / ActivityManager(79):启动活动:Intent {act = android.intent.action.VIEW dat = file:///sdcard/download/FILENAME.pdf typ = application / pdf flg = 0x4000000 cmp = com.htc.pdfreader / .ActPDFReader}
使用组件信息明确意图。文档在这里说:
&GT; 组件 - 指定要用于intent的组件类的显式名称。通常,这是通过查看intent(动作,数据/类型和类别)中的其他信息并将其与可以处理它的组件进行匹配来确定的。如果设置了此属性,则不执行任何评估,并且完全按原样使用此组件。通过指定此属性,所有其他Intent属性都将成为可选属性。
下行是你将受到htc读者的约束。但是你可以先尝试一个隐含的意图,如果失败则尝试将显式意图作为后备。
答案 1 :(得分:0)
在您的活动中复制以下代码。从onCreate()函数调用函数CopyReadAssets(“File_name.pdf”)。将File_name.pdf文件放在assets文件夹中。
private void CopyReadAssets(String pdfname)
{
AssetManager assetManager = getAssets();
InputStream in = null;
OutputStream out = null;
File file = new File(getFilesDir(), pdfname);
try
{
in = assetManager.open(pdfname);
out = openFileOutput(file.getName(), Context.MODE_WORLD_READABLE);
copyFile(in, out);
in.close();
in = null;
out.flush();
out.close();
out = null;
} catch (Exception e)
{
Toast.makeText(getApplicationContext(), "Pdf Viewer not installed", Toast.LENGTH_SHORT).show();
}
try
{
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(
Uri.parse("file://" + getFilesDir() + "/"+pdfname),
"application/pdf");
startActivity(intent);
}catch (Exception e) {
// TODO: handle exception
Toast.makeText(getApplicationContext(), "Pdf Viewer not installed" ,Toast.LENGTH_SHORT).show();
}
}
private void copyFile(InputStream in, OutputStream out) throws IOException
{
byte[] buffer = new byte[1024];
int read;
while ((read = in.read(buffer)) != -1)
{
out.write(buffer, 0, read);
}
}