tags:

views:

16

answers:

0

Here is my code.

Intent intent = new Intent(Intent.ACTION_GET_CONTENT); 
intent.setType("image/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(
        Intent.createChooser(
                intent,
                "Select Image"),
        SELECT_IMAGE_LOCAL);

For some reason it is always returning -1. Any ideas what I am doing wrong?