Android 12 Beta引入了一些新的安全策略,可能会导致CustomTabsIntent无法查看PDF链接。解决此问题的方法是使用Intent.createChooser,以便用户可以选择其他应用程序来查看此链接。
以下是示例代码:
val builder = CustomTabsIntent.Builder() val customTabsIntent = builder.build()
// Create the intent to open the PDF val uri = Uri.parse(pdfUrl) val intent = Intent(Intent.ACTION_VIEW) intent.setDataAndType(uri, "application/pdf") intent.flags = Intent.FLAG_ACTIVITY_NO_HISTORY or Intent.FLAG_GRANT_READ_URI_PERMISSION
// Start the chooser activity startActivity(Intent.createChooser(intent, "Open PDF with").apply { // Add the CustomTabsIntent to the chooser putExtra(Intent.EXTRA_INITIAL_INTENTS, arrayOf(customTabsIntent.intent)) })