tags:

views:

102

answers:

1

I'm pretty new to android development and I'm looking for a means of including calendar in my Android application, but I'm striking out pretty bad when googling.

a) Is there any way to use a default calendar kind of view in my application? (would be ideal since the UI would be familiar)

b) Failing at a built-in option, are there any good libraries out there with a calendar control that I could use?

I'm not looking to sync and all of that (at least, at this point), just looking to have a calendar view that I can display information to the user.

A: 

AFAIK, there are no other way than implement your own calendar. So... what you would have to do is using a GridLayout with 7 columns and create a custom BaseAdapter to display data correctly.

Cristian