Reputation: 2362
Is there some library that permits to display a public google calendar in android app?
Upvotes: 0
Views: 2287
Reputation: 329
You can download public calendars as XML/JSON feed.
Example:
https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/public/full?alt=json
Use Gson or json-simple or any other JSON library to parse the feed.
You can either implement your own calendar view or use a third party implementation. Google these (Sorry, I'm new to StackOverflow and not allowed to post all the links yet):
Hope this helps you.
Upvotes: 3