我希望能够在我的 android 中打开 pdf 文件并用英语或阿拉伯语搜索特定的单词。如何在代码中做到这一点,什么是最好的 pdf 查看器进行搜索?
问问题
1574 次
1 回答
2
试试这个打开一个pdf文件
File pdfFile = new File("path");
if(pdfFile.exists())
{
Uri path = Uri.fromFile(pdfFile);
Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
pdfIntent.setDataAndType(path, "application/pdf");
pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try
{
startActivity(pdfIntent);
}
catch(ActivityNotFoundException e)
{
Toast.makeText(MyPDFDemo.this, "No Application available to view pdf", Toast.LENGTH_LONG).show();
}
}
您可以从此链接根据您的要求找到 PDF 阅读器
请让我知道这个解决方案是否适合您的需要
于 2013-06-15T13:43:16.207 回答