Is there a way to speed up the query for a contentresolver? I find querying for contacts takes a bit of time even with a proper projection.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ask for fewer columns in the projection. Better yet, ask for fewer rows in the result set.
You can also use Traceview to confirm that the time truly is in the query itself, versus anything you are doing with the resulting
Cursor.