這是一個問題,但我沒有解決它使用該解決方案。 這裏是我的代碼排除谷歌驅動器選項瀏覽文件通過意圖在Android
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getDownloadCacheDirectory().getPath().toString());
intent.setDataAndType(uri,"*/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
intent.addCategory(Intent.CATEGORY_OPENABLE);
try {
startActivityForResult(Intent.createChooser(intent, "SELECT FILE"), commonUtilities.FILE_REQUEST_CODE);
} catch (ActivityNotFoundException e) {
}
仍然谷歌驅動器選項在那裏。我只是不想顯示谷歌驅動器選項。
我怎樣才能得到那個幫助我。在此感謝
'Intent.EXTRA_LOCAL_ONLY'該怎麼辦? – greenapps
哪種解決方案?如果你引用了simething,請提供一個鏈接。 – greenapps
我使用'intent.putExtra(Intent.EXTRA_LOCAL_ONLY,true);'從[https://stackoverflow.com/questions/34310167/how-to-restrict-google-drive-option-from-not-appearing-while-選擇文件或我]沒有工作 – manjari