I have code to read contact details and to read birthdays. But how do I get a list of contacts in order of their upcoming birthday?
I get records from the system by quering a ContentResolver. I maintain the order of the items in the database. So I want to display the items in the order taken from my database.
I am wondering if Android\'s ContentResolver supports using SQL functions over the columns when you query a ContentProvider. Such as SQLit开发者_运维知识库e3 date functions, to get a specific date for
What would be the correct way to add DISTINCT and/or GROUPBY to ContentResolver-based queries? Right now I have to create custom URI for each special c开发者_如何学Goase.
You can delete with content resolver by URI or by passing some parameters to the where parameter开发者_Go百科.