public class ProfileFragment extends Fragment implements ActivityStarter {
.....
profileImagePicker = new PicPicker(getContext(), this, new PicResultListener() {
@Override
public void onPictureResult(Bitmap bitmap) {
updateProfile(bitmap);
}
});
profileImagePicker.camera();
I've found this solution, but how can I retrieve the uri?