Reputation: 77
Using android sdk is it possible to select only those photos based on the date and time the picture was selected.
Upvotes: 0
Views: 58
Reputation: 12368
You need to do the following
Get the images data from data
In MediaStore.MediaColumns you will get DATE_ADDED column where you can apply your condition for photos within a time frame.
Refer this for getting the images data
Upvotes: 1