public void pdfView(Context context, File file) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(file), "application/pdf"); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); Intent newIntent = Intent.createChooser(intent, "Open PDF"); try { context.startActivity(newIntent); } catch (ActivityNotFoundException e) { Toast.makeText(context, "No PDF reader found", Toast.LENGTH_SHORT).show(); } }
在你的应用程序中使用此代码示例来打开PDF文件。