Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Intent intent = new Intent();
  2. intent.setType("image/*");
  3. intent.setAction(Intent.ACTION_GET_CONTENT);
  4. startActivityForResult(Intent.createChooser(intent, "Select Picture"), GALLERY_REQUEST_CODE);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement