Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. Intent importIntent = new Intent(Intent.ACTION_GET_CONTENT);
  2. importIntent.setType("file/*");
  3. startActivityForResult(importIntent, ACTIVITY_REQUEST_CODE_IMPORT);
  4.  
  5. Intent importIntent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
  6. importIntent.addCategory(Intent.CATEGORY_OPENABLE);
  7. importIntent.setType("*/*");
  8. startActivityForResult(importIntent, ACTIVITY_REQUEST_CODE_IMPORT);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement