Android 6.0.1、API 23、
一致するすべてのドキュメント プロバイダー (USB スティックを含む) を表示する SAF ピッカーに、Android フォンに接続された USB スティックを表示するにはどうすればよいですか?? さらに、USBポータブルストレージにファイルとフォルダーを作成するためにSAFをセットアップする方法??
SAF-documentationから、私は試しました:
public void performFileSearch() {
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
// in my case, showing only text-files is enough, therefore I guess the type is as follows:
intent.setType("text/plain");
startActivityForResult(intent, READ_REQUEST_CODE);
}
しかし、USB ポータブル ストレージはピッカーの選択肢の一部ではありません...
何が欠けていますか?必要な手順を示すサンプル プロジェクトはありますか?
@CommonsWare:ここに目的のスクリーンショットがあります: