I want to set an imageview
and let the user to set his own image, i found how to do that on another question, but all the answers contains attribute for startActivityForResult
function like PICK_IMAGE
or SELECT_IMAGE
or ACTIVITY_IMAGE_SELECTOR
but my eclipse says that those are not defined , why ?
Edit
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(
Intent.createChooser(intent, "Select Picture"), PICK_IMAGE);