I am using the Storage Access Framework (SAF) :
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("image/svg+xml");
startActivityForResult(intent, 0);
I am using the following extra:
intent.putExtra("android.content.extra.SHOW_ADVANCED", true);
My question is, where this extras to configure certain SAF options are documented? I want to display filenames as default, because thumbs cannot show preview for svg files and it's confusing (and that's the default).