Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been trying to get Event details like Location details,Description,start time and end time etc of the event in Google calendar using Google-API-Java-Client in android.

I am using the following sample code

http://code.google.com/p/google-api-java-client/source/browse?repo=samples#hg%2Fcalendar-v2-atom-android-sample

share|improve this question

1 Answer

I can answer your question only in the scope of When. This is my solution referenced from calendar-android-sample:

    List<EventEntry> events; //Don't forget to initialize
    //Get CalendarEntry from somewhere
    CalendarEntry calendar = getCalendar(); //this my function. Create your own.

    CalendarUrl eventUrl =
        new CalendarUrl(calendar.getEventFeedLink());
    // page through results
    while (true) {
      EventFeed eventFeed = client.eventFeed().list().execute(eventUrl);
      if (eventFeed.events != null) {
        events.addAll(eventFeed.events);
      }
      String nextLink = eventFeed.getNextLink();
      if (nextLink == null) {
        break;
      }
    }
    int numEvents = events.size();
    When[] times = new When[numEvents];
    for (int i = 0; i < numEvents; i++) {
      times[i] = events.get(i).when; //here you can get all events time. Manipulate as you wish.
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.