Reputation: 1154
When user press on button open sd card and can select any document in like gallery with Android SDK.
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, setImageUri());
startActivityForResult(intent, IMAGE_CAPTURE);
Upvotes: 0
Views: 38
Reputation: 11224
Use Intent.ACTION_GET_CONTENT. On modern systems you can use Intent.ACTION_OPEN_DOCUMENT too.
Upvotes: 1