Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calendar library for android app [closed]

i am designing an app for iPhone and android app. When the app gets launched for the first time it hits an api and gets back a large database which is common for a year(365 days of events that get scheduled). In my app when the user hits a button the calendar gets opened to the current date showing the dates in a grid view. If the dates have any schedule they use to look in a green color and if no events it looks in other color. Likewise i have some other operations. in my iPhone app all the calendar view, dates color and events scheduling are done by a library.

In the same way is there any library for android apps, so that it will reduce my work a lot. Is there anything available like that. Please give me a suggestion..

like image 608
Guru Avatar asked Aug 07 '11 16:08

Guru


People also ask

What calendar app comes with Android?

Get Google Calendar On your Android phone or tablet, visit the Google Calendar page on Google Play. Tap Install. Open the app and sign in with your Google Account.

Where is calendar in Android?

Finding Your Calendar App on Android These standard apps are probably already on your home screen. If they're not on your home screen, then you can add the calendar app shortcut by: Opening the app drawer. Selecting the calendar app and holding it.


1 Answers

Since this question is quite some time ago, probably you have found your solution. I share my solution here so maybe other can find it useful.

I wrote Caldroid library (https://github.com/roomorama/Caldroid) that supports rich features:

  • Embedded as a fragment or shown as dialog
  • Set min/max date. The date outside min/max range is marked as disabled
  • Set disabled dates
  • Select dates fromDate to toDate
  • Client can listen to various events when user interacts with Calendar
  • Customize look and feel
like image 130
thomasdao Avatar answered Oct 05 '22 15:10

thomasdao