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 am facing an issue in getting all the events from native.Only few of the events for a given date are getting listed.The issue exists in all the versions of device.

The code used to get the eventlist is as below :

EventList eventList = (EventList) PIM.getInstance().openPIMList(
                                       PIM.EVENT_LIST, PIM.READ_ONLY);

        Enumeration events = eventList.items();

        while (events.hasMoreElements()) {
                Event event = (Event) events.nextElement();
          }

Why am i not getting the entire list in this device what is wrong over here ?

share|improve this question
Check if you have multiple "calendar" accounts. In your code, you are listing events from the default account only. – MrVincenzo Apr 7 '12 at 20:34
@MrVincenzo i dint got about Multiple calendar accounts ,what is it about ? In my app it shows all the evetns when i launch the app for say todays date,but when i change the timezone from my app for today's date,while geting back the evetns it shows only few -Sheetal here – user1195292 Apr 9 '12 at 9:11
@MrVincenzo any solution please, i am using free keys to sign the app then i am installing into device,any issues with this approach? – user1195292 Apr 9 '12 at 15:01
Check if PIM.getInstance().listPIMLists(PIM.EVENT_LIST) returns an array with one element. Otherwise, multiple EVENT_LIST lists are defined and you are getting all items of the default one. – MrVincenzo Apr 10 '12 at 1:34
@MrVincenzo this returns me only one always ,in my code i certainly do EventList eventList = (EventList) PIM.getInstance().openPIMList( PIM.EVENT_LIST, PIM.READ_ONLY); in two or three functions – user1195292 Apr 10 '12 at 9:43
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.