Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public static final String[] EVENT_PROJECTION = new String[] {
  2.     Calendars._ID,
  3. Calendars.ACCOUNT_NAME,
  4. Calendars.CALENDAR_DISPLAY_NAME,
  5. Calendars.ACCOUNT_TYPE,
  6. Calendars.CALENDAR_ACCESS_LEVEL,
  7. Calendars.IS_PRIMARY
  8. };
  9.  
  10. // Run query
  11. Cursor cur = null;
  12. ContentResolver cr = getContentResolver();
  13. Uri uri = Calendars.CONTENT_URI;
  14. // Submit the query and get a Cursor object back.
  15. cur = cr.query(uri, EVENT_PROJECTION, "", null, null);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement