0
當與下面的方法打開一個文件選擇器:機器人:使可作爲選擇內部文件選擇器
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
Intent chooserIntent = Intent.createChooser(intent, "Open file");
startActivityForResult(chooserIntent, REQUEST_CODE_FILE_PICKER);
除非默認已定,這將呈現給用戶一個選擇的文件選擇器的使用。你如何讓自己的內部文件選擇器作爲提供給用戶的文件選擇器的選擇之一(例如Material File Picker)?
http://developer.android.com/ reference/android/content/Intent.html#EXTRA_INITIAL_INTENTS – CommonsWare
謝謝,我會看看。您是否能夠在此處提供有關相關主題的任何指導:http://stackoverflow.com/q/36821133/4070848? – drmrbrewer