Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app I want the user to be able to open a file picker same as the one in WhatsApp and Contacts to choose a profile picture.

Can anyone guide me on how to implement this?enter image description here

share|improve this question

1 Answer

For OS 6.0 and later, it is pretty straightforward. Use the FilePicker:

FilePicker picker = FilePicker.getInstance();
picker.setView(FilePicker.VIEW_PICTURES);
picker.show();
share|improve this answer
I'm using OS 5.0 – AboulEinein Feb 19 at 7:07
Perhaps you can take my answer, and use it to figure out an answer that works for you on OS 5.0. – Michael Donohue Feb 19 at 21:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.