2
我想在我的應用程序中做的是讓用戶從他的手機畫廊中選擇一張圖片。我正在使用的代碼如下:Intent.EXTRA_LOCAL_ONLY does not work
Intent intentBrowseFiles = new Intent();
intentBrowseFiles.setType("image/*");
intentBrowseFiles.setAction(Intent.ACTION_GET_CONTENT);
intentBrowseFiles.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(Intent.createChooser(intentBrowseFiles,"Select Picture"), SHOW_GALLERY);
通過將:
intentBrowseFiles.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
我以爲這隻會火畫廊意圖,而是用戶留下了他的驅動器的選擇,保管箱和其他在線帳戶以及本地圖庫...
我不想要任何其他遠程資源,有什麼我在這裏失蹤?
我也添加了'Intent.EXTRA_LOCAL_ONLY',現在它隱藏了谷歌驅動器的選擇,但它顯示**谷歌照片**(這些照片不在SD卡中)。 –