Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Intent intent = new Intent();
  2. intent.setType("image/*");
  3. intent.setAction(Intent.ACTION_GET_CONTENT);
  4. intent.addCategory(Intent.CATEGORY_OPENABLE);
  5. intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
  6. startActivityForResult(intent, REQUEST_CODE_BACKGROUND);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement