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 (http://
developer.android.com/reference/android/provider/
MediaStore.Images.ImageColumns.html) 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.

Best regards,

Erol

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to