Getting data from calendar on Android Wear
问题 I'm querying the calendar data like this: // Constructor of the class mCursor = context.getContentResolver().query(CalendarContract.Events.CONTENT_URI, mColumns, null, null, null); updateEvents(); //contents of updateEvents: events.clear(); mCursor.moveToFirst(); mLastUpdate = System.currentTimeMillis(); while (!mCursor.isAfterLast()) { long end = mCursor.getLong(2); if (end > mLastUpdate) events.add(new Event(mCursor)); mCursor.moveToNext(); } The code manages works on mobile device, however