gderaco
gderaco

Reputation: 2362

How display public google calendar in android app?

Is there some library that permits to display a public google calendar in android app?

Upvotes: 0

Views: 2287

Answers (1)

ThimoKl
ThimoKl

Reputation: 329

Get the data

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.

Display it

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

Related Questions