I have tried to open a file manager with mentioned code but I don't want to visible google drive option in the navigation bar.
I have tried the different solution but still, I didn't get my solution and wondering Is it possible or not?
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
intent.setType("*/*");
startActivityForResult(Intent.createChooser(intent, "Select a File
to Upload"),FILE_SELECT_CODE);