我试图用提到的代码打开一个文件管理器,但我不想在导航栏中看到谷歌驱动器选项。
我尝试了不同的解决方案,但仍然没有得到我的解决方案,我想知道这是否可能?
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);