Teraiya Mayur
Teraiya Mayur

Reputation: 1154

PDF, Document Attached in android

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

Answers (1)

greenapps
greenapps

Reputation: 11224

Use Intent.ACTION_GET_CONTENT. On modern systems you can use Intent.ACTION_OPEN_DOCUMENT too.

Upvotes: 1

Related Questions