私のアプリケーションでは、SD カードからサーバーにファイルをアップロードしたいと考えています。そのために、SDカードに含まれるすべてのファイルを含むファイル選択ダイアログを開きたいと思います。
Intent intent = new Intent();
// intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
画像ファイルしか開きませんが、すべてのファイルが必要です