Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. @Override
  2.     public void getGalleryImagePath() {
  3.         Intent intent = new Intent();
  4.         intent.setType("image/*");
  5.         intent.setAction(Intent.ACTION_GET_CONTENT);
  6.         activity.startActivityForResult(Intent.createChooser(intent, "Select Users Image"), SELECT_IMAGE_CODE);
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement