In my application, I need to pick these (sfa, sfb, fbx, obj) specific files which I have saved before, from the file manager in an Android device across different providers
I tried this
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
//intent.putExtra("CONTENT_TYPE", "*/*");
activityResultLauncher.launch(intent);
but it always opens like this, I don’t see any file manager here
If anyone knows how to do this with these file formats (sfa, sfb, fbx, obj) across different providers (Samsung,Pixel etc…), please leave your solution, it would be very helpful