当我运行默认文件选择器时,我只需要在我的应用程序中显示“pdf”文件我无法过滤文件扩展名。
final Intent getContentIntent = new Intent(Intent.ACTION_GET_CONTENT);
getContentIntent.setType("application/pdf");
getContentIntent.addCategory(Intent.CATEGORY_OPENABLE);
Intent intent = Intent.createChooser(getContentIntent, "Select a file");
startActivityForResult(intent, REQUEST_PDF_GET);
文件选择器显示任何类型的文件。我只想显示 pdf 文件。我如何过滤文件选择器显示的文件。