views:

21

answers:

0

Hello

I'm using following code to open a gallery inside of my app

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, FIND_RESULT);

Is it possible to limit a list of images to only show images taken by camera? Viewing Gallery on my 2.1 system, images are grouped so there has to be a parameter that defines to which folder it belongs.

Checking the MediaStore.Images.ImageColumns I did not a find any column that would define such thing.

Could I be wrong? Because if I could create a query to filter by folder and create my own gallery view, then my problem would be solved.