在 Android 中,我需要asset
在视图中显示文件夹中的 PDF 文件。任何人都可以帮我解决示例代码吗?
问问题
186 次
1 回答
0
我认为不可能在视图中显示它。您将不得不制作一个Intent
然后调用外部程序来执行此操作。
File sd = new File("example.pdf");
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile(sd));
intent.setDataAndType(Uri.fromFile(sd), "application/pdf");
try {
getContext().startActivity(intent);
} catch(ActivityNotFoundException e){
// Show a message that a PDF viewer is not installed
Toast.makeText("No PDF reader available",Toast.LENGTH_LONG).show();
}
于 2012-01-03T23:05:24.733 回答